-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathplugin.py
More file actions
252 lines (200 loc) · 7.6 KB
/
plugin.py
File metadata and controls
252 lines (200 loc) · 7.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
from __future__ import annotations
import re
import textwrap
from markdown_it import MarkdownIt
import mdformat.plugins
from mdformat.renderer import RenderContext, RenderTreeNode
from mdit_py_plugins.dollarmath import dollarmath_plugin
from mdit_py_plugins.myst_blocks import myst_block_plugin
from mdit_py_plugins.myst_role import myst_role_plugin
from mdit_py_plugins.container import container_plugin
from mdformat_myst._directives import fence, render_fence_html
_TARGET_PATTERN = re.compile(r"^\s*\(.+\)=\s*$")
_ROLE_NAME_PATTERN = re.compile(r"({[a-zA-Z0-9_\-+:]+})")
_YAML_HEADER_PATTERN = re.compile(r"(?m)(^:\w+: .*$\n?)+|^---$\n(?s:.).*\n---\n")
container_names = [
"admonition",
"attention",
"caution",
"danger",
"div",
"dropdown",
"embed",
"error",
"exercise",
"exercise-end",
"exercise-start",
"figure",
"glossary",
"grid",
"grid-item",
"grid-item-card",
"hint",
"image",
"important",
"include",
"index",
"literal-include",
"margin",
"math",
"note",
"prf:algorithm",
"prf:assumption",
"prf:axiom",
"prf:conjecture",
"prf:corollary",
"prf:criterion",
"prf:definition",
"prf:example",
"prf:lemma",
"prf:observation",
"prf:proof",
"prf:property",
"prf:proposition",
"prf:remark",
"prf:theorem",
"seealso",
"show-index",
"sidebar",
"solution",
"solution-end",
"solution-start",
"span",
"tab-item",
"tab-set",
"table",
"tip",
"todo",
"topics",
"warning",
]
def update_mdit(mdit: MarkdownIt) -> None:
# Enable mdformat-tables plugin
tables_plugin = mdformat.plugins.PARSER_EXTENSIONS["tables"]
if tables_plugin not in mdit.options["parser_extension"]:
mdit.options["parser_extension"].append(tables_plugin)
tables_plugin.update_mdit(mdit)
# Enable mdformat-frontmatter plugin
frontmatter_plugin = mdformat.plugins.PARSER_EXTENSIONS["frontmatter"]
if frontmatter_plugin not in mdit.options["parser_extension"]:
mdit.options["parser_extension"].append(frontmatter_plugin)
frontmatter_plugin.update_mdit(mdit)
# Enable mdformat-footnote plugin
footnote_plugin = mdformat.plugins.PARSER_EXTENSIONS["footnote"]
if footnote_plugin not in mdit.options["parser_extension"]:
mdit.options["parser_extension"].append(footnote_plugin)
footnote_plugin.update_mdit(mdit)
# Enable MyST role markdown-it extension
mdit.use(myst_role_plugin)
# Enable MyST block markdown-it extension (including "LineComment",
# "BlockBreak" and "Target" syntaxes)
mdit.use(myst_block_plugin)
# Enable dollarmath markdown-it extension
mdit.use(dollarmath_plugin)
# Trick `mdformat`s AST validation by removing HTML rendering of code
# blocks and fences. Directives are parsed as code fences and we
# modify them in ways that don't break MyST AST but do break
# CommonMark AST, so we need to do this to make validation pass.
mdit.add_render_rule("fence", render_fence_html)
mdit.add_render_rule("code_block", render_fence_html)
for name in container_names:
container_plugin(mdit, name="{" + name + "}", marker=":")
def container_renderer(
node: RenderTreeNode, context: RenderContext, *args, **kwargs
) -> str:
children = node.children
paragraphs = []
if children:
# Look at the tokens forming the first paragraph and see if
# they form a YAML header. This could be stricter: there
# should be exactly three tokens: paragraph open, YAML
# header, paragraph end.
tokens = children[0].to_tokens()
if all(
token.type in {'paragraph_open', 'paragraph_close'} or
_YAML_HEADER_PATTERN.fullmatch(token.content)
for token in tokens
):
paragraphs.append('\n'.join(token.content.strip()
for token in tokens
if token.content))
# and skip that first paragraph
children = children[1:]
paragraphs.extend(child.render(context) for child in children)
return node.markup + node.info + "\n" + "\n\n".join(paragraphs) + "\n" + node.markup
def _role_renderer(node: RenderTreeNode, context: RenderContext) -> str:
role_name = "{" + node.meta["name"] + "}"
role_content = f"`{node.content}`"
return role_name + role_content
def _comment_renderer(node: RenderTreeNode, context: RenderContext) -> str:
return "%" + node.content.replace("\n", "\n%")
def _blockbreak_renderer(node: RenderTreeNode, context: RenderContext) -> str:
text = "+++"
if node.content:
text += f" {node.content}"
return text
def _target_renderer(node: RenderTreeNode, context: RenderContext) -> str:
return f"({node.content})="
def _math_inline_renderer(node: RenderTreeNode, context: RenderContext) -> str:
return f"${node.content}$"
def _math_block_renderer(node: RenderTreeNode, context: RenderContext) -> str:
indent_width = context.env.get("indent_width", 0)
if indent_width > 0:
return f"$${textwrap.dedent(node.content)}$$"
return f"$${node.content}$$"
def _math_block_label_renderer(node: RenderTreeNode, context: RenderContext) -> str:
return f"{_math_block_renderer(node, context)} ({node.info})"
def _math_block_safe_blockquote_renderer(
node: RenderTreeNode, context: RenderContext
) -> str:
marker = "> "
with context.indented(len(marker)):
lines = []
for i, child in enumerate(node.children):
if child.type in ("math_block", "math_block_label"):
lines.append(child.render(context))
else:
lines.extend(child.render(context).splitlines())
if i < (len(node.children) - 1):
lines.append("")
if not lines:
return ">"
quoted_lines = (f"{marker}{line}" if line else ">" for line in lines)
quoted_str = "\n".join(quoted_lines)
return quoted_str
def _render_children(node: RenderTreeNode, context: RenderContext) -> str:
return "\n\n".join(child.render(context) for child in node.children)
def _escape_paragraph(text: str, node: RenderTreeNode, context: RenderContext) -> str:
lines = text.split("\n")
for i in range(len(lines)):
# Three or more "+" chars are interpreted as a block break. Escape them.
space_removed = lines[i].replace(" ", "")
if space_removed.startswith("+++"):
lines[i] = lines[i].replace("+", "\\+", 1)
# A line starting with "%" is a comment. Escape.
if lines[i].startswith("%"):
lines[i] = f"\\{lines[i]}"
# Escape lines that look like targets
if _TARGET_PATTERN.search(lines[i]):
lines[i] = lines[i].replace("(", "\\(", 1)
return "\n".join(lines)
def _escape_text(text: str, node: RenderTreeNode, context: RenderContext) -> str:
# Escape MyST role names
text = _ROLE_NAME_PATTERN.sub(r"\\\1", text)
# Escape inline and block dollarmath
text = text.replace("$", "\\$")
return text
RENDERERS = {
"blockquote": _math_block_safe_blockquote_renderer,
"myst_role": _role_renderer,
"myst_line_comment": _comment_renderer,
"myst_block_break": _blockbreak_renderer,
"myst_target": _target_renderer,
"math_inline": _math_inline_renderer,
"math_block_label": _math_block_label_renderer,
"math_block": _math_block_renderer,
"fence": fence,
}
for name in container_names:
RENDERERS["container_{" + name + "}"] = container_renderer
POSTPROCESSORS = {"paragraph": _escape_paragraph, "text": _escape_text}