comparison docs/lexer-algpseudocode.rst @ 237:c4e8c7010ca0

FIX: Syntax description of "Explicit Token Types". Backslash was doubled erroneously in the output.
author Franz Glasner <fzglas.hg@dom66.de>
date Sat, 16 May 2026 00:20:58 +0200
parents d470250f8451
children 7df1fd3bab87
comparison
equal deleted inserted replaced
236:28639bddddd0 237:c4e8c7010ca0
441 `XX` represents a `value` in the :py:data:`pygments.token.STANDARD_TYPES` 441 `XX` represents a `value` in the :py:data:`pygments.token.STANDARD_TYPES`
442 dict. 442 dict.
443 Its corresponding token type (the associated `key` in this `dict`) is 443 Its corresponding token type (the associated `key` in this `dict`) is
444 used as token type. 444 used as token type.
445 445
446 ``\\tt-XX/SINGLE-CHAR`` 446 ``\tt-XX/SINGLE-CHAR``
447 447
448 no escaping needed 448 no escaping needed
449 449
450 `SINGLE-CHAR` is a single character and can be *every* character 450 `SINGLE-CHAR` is a single character and can be *every* character
451 (including a carriage-return or line-feed) 451 (including a carriage-return or line-feed)
452 452
453 ``\\ttx-XX{CHARACTERS}`` 453 ``\ttx-XX{CHARACTERS}``
454 454
455 ``\\ttx-XX(CHARACTERS)`` 455 ``\ttx-XX(CHARACTERS)``
456 456
457 ``\\ttx-XX[CHARACTERS]`` 457 ``\ttx-XX[CHARACTERS]``
458 458
459 ``\\ttx-XX<CHARACTERS>`` 459 ``\ttx-XX<CHARACTERS>``
460 460
461 ``\\ttx-XX<SEP>CHARACTERS<SEP>`` 461 ``\ttx-XX<SEP>CHARACTERS<SEP>``
462 462
463 No escaping possible! There are enough alternatives available! 463 No escaping possible! There are enough alternatives available!
464 464
465 `SEP` is one of ``/:|=*+!\$~``. 465 `SEP` is one of ``/:|=*+!\$~``.
466 466