summaryrefslogtreecommitdiff
path: root/pygments
diff options
context:
space:
mode:
authorAndrew T. Biehl <70184461+andrewtbiehl@users.noreply.github.com>2022-07-15 03:51:47 -0500
committerGitHub <noreply@github.com>2022-07-15 10:51:47 +0200
commit2ebc5eaa28edeb89efc3324e0e82e10c57b9b6e0 (patch)
tree95e2c26bd1e1581fe84d8f68323a21b8a45b723d /pygments
parent766c0f562633273650798301361b43695db97911 (diff)
downloadpygments-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.py1
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',