diff options
| author | Andrew T. Biehl <70184461+andrewtbiehl@users.noreply.github.com> | 2022-07-15 03:51:47 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-15 10:51:47 +0200 |
| commit | 2ebc5eaa28edeb89efc3324e0e82e10c57b9b6e0 (patch) | |
| tree | 95e2c26bd1e1581fe84d8f68323a21b8a45b723d /pygments | |
| parent | 766c0f562633273650798301361b43695db97911 (diff) | |
| download | pygments-git-2ebc5eaa28edeb89efc3324e0e82e10c57b9b6e0.tar.gz | |
Reconcile standard token discrepancies in docs and code (#2187)
* Add Name.Property token missing from docs
* Add Comment.PreprocFile token missing from docs
* Add Punctuation.Marker token to tokens dict
Diffstat (limited to 'pygments')
| -rw-r--r-- | pygments/token.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pygments/token.py b/pygments/token.py index 8aee88a8..e3e565ad 100644 --- a/pygments/token.py +++ b/pygments/token.py @@ -189,6 +189,7 @@ STANDARD_TYPES = { Operator.Word: 'ow', Punctuation: 'p', + Punctuation.Marker: 'pm', Comment: 'c', Comment.Hashbang: 'ch', |
