mirror of
https://github.com/python/cpython.git
synced 2025-11-01 10:45:30 +00:00
bpo-40939: Use the new grammar for the grammar specification documentation (GH-19969)
(We censor the heck out of actions and some other stuff using a custom "highlighter".) Co-authored-by: Guido van Rossum <guido@python.org>
This commit is contained in:
parent
67987acd5d
commit
72cabb2aa6
4 changed files with 91 additions and 210 deletions
75
Doc/tools/extensions/peg_highlight.py
Normal file
75
Doc/tools/extensions/peg_highlight.py
Normal file
|
|
@ -0,0 +1,75 @@
|
|||
from pygments.lexer import RegexLexer, bygroups, include
|
||||
from pygments.token import Comment, Generic, Keyword, Name, Operator, Punctuation, Text
|
||||
|
||||
from sphinx.highlighting import lexers
|
||||
|
||||
|
||||
class PEGLexer(RegexLexer):
|
||||
"""Pygments Lexer for PEG grammar (.gram) files
|
||||
|
||||
This lexer strips the following elements from the grammar:
|
||||
|
||||
- Meta-tags
|
||||
- Variable assignments
|
||||
- Actions
|
||||
- Lookaheads
|
||||
- Rule types
|
||||
- Rule options
|
||||
- Rules named `invalid_*` or `incorrect_*`
|
||||
"""
|
||||
|
||||
name = "PEG"
|
||||
aliases = ["peg"]
|
||||
filenames = ["*.gram"]
|
||||
_name = r"([^\W\d]\w*)"
|
||||
_text_ws = r"(\s*)"
|
||||
|
||||
tokens = {
|
||||
"ws": [(r"\n", Text), (r"\s+", Text), (r"#.*$", Comment.Singleline),],
|
||||
"lookaheads": [
|
||||
(r"(?<=\|\s)(&\w+\s?)", bygroups(None)),
|
||||
(r"(?<=\|\s)(&'.+'\s?)", bygroups(None)),
|
||||
(r'(?<=\|\s)(&".+"\s?)', bygroups(None)),
|
||||
(r"(?<=\|\s)(&\(.+\)\s?)", bygroups(None)),
|
||||
],
|
||||
"metas": [
|
||||
(r"(@\w+ '''(.|\n)+?''')", bygroups(None)),
|
||||
(r"^(@.*)$", bygroups(None)),
|
||||
],
|
||||
"actions": [(r"{(.|\n)+?}", bygroups(None)),],
|
||||
"strings": [
|
||||
(r"'\w+?'", Keyword),
|
||||
(r'"\w+?"', Keyword),
|
||||
(r"'\W+?'", Text),
|
||||
(r'"\W+?"', Text),
|
||||
],
|
||||
"variables": [(_name + _text_ws + "(=)", bygroups(None, None, None),),],
|
||||
"invalids": [
|
||||
(r"^(\s+\|\s+invalid_\w+\s*\n)", bygroups(None)),
|
||||
(r"^(\s+\|\s+incorrect_\w+\s*\n)", bygroups(None)),
|
||||
(r"^(#.*invalid syntax.*(?:.|\n)*)", bygroups(None),),
|
||||
],
|
||||
"root": [
|
||||
include("invalids"),
|
||||
include("ws"),
|
||||
include("lookaheads"),
|
||||
include("metas"),
|
||||
include("actions"),
|
||||
include("strings"),
|
||||
include("variables"),
|
||||
(r"\b(?!(NULL|EXTRA))([A-Z_]+)\b\s*(?!\()", Text,),
|
||||
(
|
||||
r"^\s*" + _name + "\s*" + "(\[.*\])?" + "\s*" + "(\(.+\))?" + "\s*(:)",
|
||||
bygroups(Name.Function, None, None, Punctuation),
|
||||
),
|
||||
(_name, Name.Function),
|
||||
(r"[\||\.|\+|\*|\?]", Operator),
|
||||
(r"{|}|\(|\)|\[|\]", Punctuation),
|
||||
(r".", Text),
|
||||
],
|
||||
}
|
||||
|
||||
|
||||
def setup(app):
|
||||
lexers["peg"] = PEGLexer()
|
||||
return {"version": "1.0", "parallel_read_safe": True}
|
||||
Loading…
Add table
Add a link
Reference in a new issue