-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathplugin.py
More file actions
158 lines (115 loc) · 5.36 KB
/
plugin.py
File metadata and controls
158 lines (115 loc) · 5.36 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
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 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_\-+:]+})")
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-front-matters plugin
front_matters_plugin = mdformat.plugins.PARSER_EXTENSIONS["front_matters"]
if front_matters_plugin not in mdit.options["parser_extension"]:
mdit.options["parser_extension"].append(front_matters_plugin)
front_matters_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)
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,
}
POSTPROCESSORS = {"paragraph": _escape_paragraph, "text": _escape_text}