-
Notifications
You must be signed in to change notification settings - Fork 198
/
Copy pathdocutils_renderer.py
737 lines (632 loc) · 27.3 KB
/
docutils_renderer.py
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
"""NOTE: this will eventually be moved out of core"""
from collections import OrderedDict
from contextlib import contextmanager
import inspect
import json
from os.path import splitext
from typing import List
from urllib.parse import urlparse
import yaml
from docutils import nodes
from docutils.frontend import OptionParser
from docutils.languages import get_language
from docutils.parsers.rst import directives, Directive, DirectiveError, roles
from docutils.parsers.rst import Parser as RSTParser
from docutils.parsers.rst.directives.misc import Include
from docutils.statemachine import StringList
from docutils.utils import new_document, Reporter
from markdown_it import MarkdownIt
from markdown_it.token import Token, nest_tokens
from markdown_it.utils import AttrDict
from markdown_it.common.utils import escapeHtml
from myst_parser.mocking import (
MockInliner,
MockState,
MockStateMachine,
MockingError,
MockIncludeDirective,
)
from .parse_directives import parse_directive_text, DirectiveParsingError
def make_document(source_path="notset") -> nodes.document:
"""Create a new docutils document."""
settings = OptionParser(components=(RSTParser,)).get_default_values()
return new_document(source_path, settings=settings)
class DocutilsRenderer:
__output__ = "docutils"
def __init__(self, parser: MarkdownIt):
"""Load the renderer (called by ``MarkdownIt``)"""
self.md = parser
self.rules = {
k: v
for k, v in inspect.getmembers(self, predicate=inspect.ismethod)
if k.startswith("render_") and k != "render_children"
}
def setup_render(self, options, env):
self.env = env
self.config = options
self.document = self.config.get("document", make_document())
self.current_node = self.config.get(
"current_node", self.document
) # type: nodes.Element
self.reporter = self.document.reporter # type: Reporter
self.language_module = self.document.settings.language_code # type: str
get_language(self.language_module)
self._level_to_elem = {0: self.document}
def render(self, tokens: List[Token], options, env: AttrDict):
"""Run the render on a token stream.
:param tokens: list on block tokens to render
:param options: params of parser instance
:param env: the environment sandbox associated with the tokens,
containing additional metadata like reference info
"""
self.setup_render(options, env)
# propagate line number down to inline elements
for token in tokens:
if token.map:
# For docutils we want 1 based line numbers (not 0)
token.map = [token.map[0] + 1, token.map[1] + 1]
for child in token.children or []:
child.map = token.map
# nest tokens
tokens = nest_tokens(tokens)
# move footnote definitions to env
self.env.setdefault("foot_refs", {})
new_tokens = []
for token in tokens:
if token.type == "footnote_reference_open":
label = token.meta["label"]
self.env["foot_refs"].setdefault(label, []).append(token)
else:
new_tokens.append(token)
tokens = new_tokens
# render
for i, token in enumerate(tokens):
# skip hidden?
if f"render_{token.type}" in self.rules:
self.rules[f"render_{token.type}"](token)
else:
self.current_node.append(
self.reporter.warning(
f"No render method for: {token.type}", line=token.map[0]
)
)
# log warnings for duplicate reference definitions
# "duplicate_refs": [{"href": "ijk", "label": "B", "map": [4, 5], "title": ""}],
for dup_ref in self.env.get("duplicate_refs", []):
self.document.append(
self.reporter.warning(
f"Duplicate reference definition: {dup_ref['label']}",
line=dup_ref["map"][0] + 1,
)
)
if not self.config.get("output_footnotes", True):
return self.document
# we don't use the foot_references stored in the env
# since references within directives/roles will have been added after
# those from the initial markdown parse
# instead we gather them from a walk of the created document
foot_refs = OrderedDict()
for refnode in self.document.traverse(nodes.footnote_reference):
if refnode["refname"] not in foot_refs:
foot_refs[refnode["refname"]] = True
# TODO log warning for duplicate footnote definitions
if foot_refs:
self.current_node.append(nodes.transition())
for footref in foot_refs:
self.render_footnote_reference_open(self.env["foot_refs"][footref][0])
return self.document
def nested_render_text(self, text: str, lineno: int):
"""Render unparsed text."""
tokens = self.md.parse(text + "\n", self.env)
if tokens and tokens[0].type == "front_matter":
tokens.pop(0)
# set correct line numbers
for token in tokens:
if token.map:
token.map = [token.map[0] + lineno, token.map[1] + lineno]
for child in token.children or []:
child.map = token.map
# nest tokens
tokens = nest_tokens(tokens)
# move footnote definitions to env
self.env.setdefault("foot_refs", {})
new_tokens = []
for token in tokens:
if token.type == "footnote_reference_open":
label = token.meta["label"]
self.env["foot_refs"].setdefault(label, []).append(token)
else:
new_tokens.append(token)
tokens = new_tokens
# render
for i, token in enumerate(tokens):
# skip hidden?
if f"render_{token.type}" in self.rules:
self.rules[f"render_{token.type}"](token)
else:
self.current_node.append(
self.reporter.warning(
f"No render method for: {token.type}", line=token.map[0]
)
)
@contextmanager
def current_node_context(self, node, append: bool = False):
"""Context manager for temporarily setting the current node."""
if append:
self.current_node.append(node)
current_node = self.current_node
self.current_node = node
yield
self.current_node = current_node
def render_children(self, token):
for i, child in enumerate(token.children or []):
if f"render_{child.type}" in self.rules:
self.rules[f"render_{child.type}"](child)
else:
self.current_node.append(
self.reporter.warning(
f"No render method for: {child.type}", line=child.map[0]
)
)
def add_line_and_source_path(self, node, token):
"""Copy the line number and document source path to the docutils node."""
try:
node.line = token.map[0]
except (AttributeError, TypeError):
pass
node.source = self.document["source"]
def is_section_level(self, level, section):
return self._level_to_elem.get(level, None) == section
def add_section(self, section, level):
parent_level = max(
section_level
for section_level in self._level_to_elem
if level > section_level
)
if (level > parent_level) and (parent_level + 1 != level):
self.current_node.append(
self.reporter.warning(
"Non-consecutive header level increase; {} to {}".format(
parent_level, level
),
line=section.line,
)
)
parent = self._level_to_elem[parent_level]
parent.append(section)
self._level_to_elem[level] = section
# Prune level to limit
self._level_to_elem = dict(
(section_level, section)
for section_level, section in self._level_to_elem.items()
if section_level <= level
)
def renderInlineAsText(self, tokens: List[Token]) -> str:
"""Special kludge for image `alt` attributes to conform CommonMark spec.
Don't try to use it! Spec requires to show `alt` content with stripped markup,
instead of simple escaping.
"""
result = ""
for token in tokens or []:
if token.type == "text":
result += token.content
# elif token.type == "image":
# result += self.renderInlineAsText(token.children)
else:
result += self.renderInlineAsText(token.children)
return result
# ### render methods for commonmark tokens
def render_paragraph_open(self, token):
para = nodes.paragraph("")
self.add_line_and_source_path(para, token)
with self.current_node_context(para, append=True):
self.render_children(token)
def render_inline(self, token):
self.render_children(token)
def render_text(self, token):
self.current_node.append(nodes.Text(token.content, token.content))
def render_bullet_list_open(self, token):
list_node = nodes.bullet_list()
self.add_line_and_source_path(list_node, token)
with self.current_node_context(list_node, append=True):
self.render_children(token)
def render_ordered_list_open(self, token):
list_node = nodes.enumerated_list()
self.add_line_and_source_path(list_node, token)
with self.current_node_context(list_node, append=True):
self.render_children(token)
def render_list_item_open(self, token):
item_node = nodes.list_item()
self.add_line_and_source_path(item_node, token)
with self.current_node_context(item_node, append=True):
self.render_children(token)
def render_em_open(self, token):
node = nodes.emphasis()
self.add_line_and_source_path(node, token)
with self.current_node_context(node, append=True):
self.render_children(token)
def render_softbreak(self, token):
self.current_node.append(nodes.Text("\n"))
def render_hardbreak(self, token):
self.current_node.append(nodes.raw("", "<br />\n", format="html"))
def render_strong_open(self, token):
node = nodes.strong()
self.add_line_and_source_path(node, token)
with self.current_node_context(node, append=True):
self.render_children(token)
def render_blockquote_open(self, token):
quote = nodes.block_quote()
self.add_line_and_source_path(quote, token)
with self.current_node_context(quote, append=True):
self.render_children(token)
def render_hr(self, token):
node = nodes.transition()
self.add_line_and_source_path(node, token)
self.current_node.append(node)
def render_code_inline(self, token):
node = nodes.literal(token.content, token.content)
self.add_line_and_source_path(node, token)
self.current_node.append(node)
def render_code_block(self, token):
# this should never have a language, since it is just indented text, however,
# creating a literal_block with no language will raise a warning in sphinx
text = token.content
language = token.info.split()[0] if token.info else "none"
language = language or "none"
node = nodes.literal_block(text, text, language=language)
self.add_line_and_source_path(node, token)
self.current_node.append(node)
def render_fence(self, token):
text = token.content
if token.info:
# Ensure that we'll have an empty string if info exists but is only spaces
token.info = token.info.strip()
language = token.info.split()[0] if token.info else ""
if language.startswith("{") and language.endswith("}"):
return self.render_directive(token)
if not language:
try:
sphinx_env = self.document.settings.env
language = sphinx_env.temp_data.get(
"highlight_language", sphinx_env.config.highlight_language
)
except AttributeError:
pass
if not language:
language = self.config.get("highlight_language", "")
node = nodes.literal_block(text, text, language=language)
self.add_line_and_source_path(node, token)
self.current_node.append(node)
def render_heading_open(self, token):
# Test if we're replacing a section level first
level = int(token.tag[1])
if isinstance(self.current_node, nodes.section):
if self.is_section_level(level, self.current_node):
self.current_node = self.current_node.parent
title_node = nodes.title()
self.add_line_and_source_path(title_node, token)
new_section = nodes.section()
self.add_line_and_source_path(new_section, token)
new_section.append(title_node)
self.add_section(new_section, level)
self.current_node = title_node
self.render_children(token)
assert isinstance(self.current_node, nodes.title)
text = self.current_node.astext()
# if self.translate_section_name:
# text = self.translate_section_name(text)
name = nodes.fully_normalize_name(text)
section = self.current_node.parent
section["names"].append(name)
self.document.note_implicit_target(section, section)
self.current_node = section
def render_link_open(self, token):
if token.markup == "autolink":
return self.render_autolink(token)
ref_node = nodes.reference()
self.add_line_and_source_path(ref_node, token)
# Check destination is supported for cross-linking and remove extension
# TODO escape urls?
destination = token.attrGet("href")
title = token.attrGet("title")
_, ext = splitext(destination)
# TODO check for other supported extensions, such as those specified in
# the Sphinx conf.py file but how to access this information?
# TODO this should probably only remove the extension for local paths,
# i.e. not uri's starting with http or other external prefix.
# if ext.replace('.', '') in self.supported:
# destination = destination.replace(ext, '')
ref_node["refuri"] = destination
if title:
ref_node["title"] = title
next_node = ref_node
url_check = urlparse(destination)
# If there's not a url scheme (e.g. 'https' for 'https:...' links),
# or there is a scheme but it's not in the list of known_url_schemes,
# then assume it's a cross-reference
known_url_schemes = self.config.get("known_url_schemes", None)
if known_url_schemes:
scheme_known = url_check.scheme in known_url_schemes
else:
scheme_known = bool(url_check.scheme)
if not url_check.fragment and not scheme_known:
self.handle_cross_reference(token, destination)
else:
self.current_node.append(next_node)
with self.current_node_context(ref_node):
self.render_children(token)
def handle_cross_reference(self, token, destination):
if not self.config.get("ignore_missing_refs", False):
self.current_node.append(
self.reporter.warning(
f"Reference not found: {destination}", line=token.map[0]
)
)
def render_autolink(self, token):
refuri = target = escapeHtml(token.attrGet("href"))
ref_node = nodes.reference(target, target, refuri=refuri)
self.add_line_and_source_path(ref_node, token)
self.current_node.append(ref_node)
def render_html_inline(self, token):
self.current_node.append(nodes.raw("", token.content, format="html"))
def render_html_block(self, token):
self.current_node.append(nodes.raw("", token.content, format="html"))
def render_image(self, token):
img_node = nodes.image()
self.add_line_and_source_path(img_node, token)
img_node["uri"] = token.attrGet("src")
# TODO ideally we would render proper markup here,
# this probably requires an upstream change in sphinx
img_node["alt"] = self.renderInlineAsText(token.children)
title = token.attrGet("title")
if title:
img_node["title"] = token.attrGet("title")
self.current_node.append(img_node)
# ### render methods for plugin tokens
def render_front_matter(self, token):
"""Pass document front matter data
For RST, all field lists are captured by
``docutils.docutils.parsers.rst.states.Body.field_marker``,
then, if one occurs at the document, it is transformed by
`docutils.docutils.transforms.frontmatter.DocInfo`, and finally
this is intercepted by sphinx and added to the env in
`sphinx.environment.collectors.metadata.MetadataCollector.process_doc`
So technically the values should be parsed to AST, but this is redundant,
since `process_doc` just converts them back to text.
"""
if not isinstance(token.content, dict):
try:
data = yaml.safe_load(token.content)
except (yaml.parser.ParserError, yaml.scanner.ScannerError) as error:
msg_node = self.reporter.error(
"Front matter block:\n" + str(error), line=token.map[0]
)
msg_node += nodes.literal_block(token.content, token.content)
self.current_node += [msg_node]
return
else:
data = token.content
docinfo = dict_to_docinfo(data)
self.current_node.append(docinfo)
def render_table_open(self, token):
# markdown-it table always contains two elements:
header = token.children[0]
body = token.children[1]
# with one header row
header_row = header.children[0]
# top-level element
table = nodes.table()
table["classes"] += ["colwidths-auto"]
self.add_line_and_source_path(table, token)
self.current_node.append(table)
# column settings element
maxcols = len(header_row.children)
colwidths = [round(100 / maxcols, 2)] * maxcols
tgroup = nodes.tgroup(cols=len(colwidths))
table += tgroup
for colwidth in colwidths:
colspec = nodes.colspec(colwidth=colwidth)
tgroup += colspec
# header
thead = nodes.thead()
tgroup += thead
with self.current_node_context(thead):
self.render_table_row(header_row)
# body
tbody = nodes.tbody()
tgroup += tbody
with self.current_node_context(tbody):
for body_row in body.children:
self.render_table_row(body_row)
def render_table_row(self, token):
row = nodes.row()
with self.current_node_context(row, append=True):
for child in token.children:
entry = nodes.entry()
para = nodes.paragraph("")
style = child.attrGet("style") # i.e. the alignment when using e.g. :--
if style:
entry["classes"].append(style)
with self.current_node_context(entry, append=True):
with self.current_node_context(para, append=True):
self.render_children(child)
def render_math_inline(self, token):
content = token.content
node = nodes.math(content, content)
self.add_line_and_source_path(node, token)
self.current_node.append(node)
def render_math_single(self, token):
content = token.content
node = nodes.math(content, content)
self.add_line_and_source_path(node, token)
self.current_node.append(node)
def render_math_block(self, token):
content = token.content
node = nodes.math_block(content, content, nowrap=False, number=None)
self.add_line_and_source_path(node, token)
self.current_node.append(node)
def render_footnote_ref(self, token):
"""Footnote references are added as auto-numbered,
.i.e. `[^a]` is read as rST `[#a]_`
"""
# TODO we now also have ^[a] the inline version (currently disabled)
# that would be rendered here
target = token.meta["label"]
refnode = nodes.footnote_reference("[^{}]".format(target))
self.add_line_and_source_path(refnode, token)
refnode["auto"] = 1
refnode["refname"] = target
# refnode += nodes.Text(token.target)
self.document.note_autofootnote_ref(refnode)
self.document.note_footnote_ref(refnode)
self.current_node.append(refnode)
def render_footnote_reference_open(self, token):
target = token.meta["label"]
footnote = nodes.footnote()
self.add_line_and_source_path(footnote, token)
footnote["names"].append(target)
footnote["auto"] = 1
self.document.note_autofootnote(footnote)
self.document.note_explicit_target(footnote, footnote)
with self.current_node_context(footnote, append=True):
self.render_children(token)
def render_myst_block_break(self, token):
block_break = nodes.comment(token.content, token.content)
block_break["classes"] += ["block_break"]
self.add_line_and_source_path(block_break, token)
self.current_node.append(block_break)
def render_myst_target(self, token):
text = token.content
name = nodes.fully_normalize_name(text)
target = nodes.target(text)
target["names"].append(name)
self.add_line_and_source_path(target, token)
self.document.note_explicit_target(target, self.current_node)
self.current_node.append(target)
def render_myst_line_comment(self, token):
self.current_node.append(nodes.comment(token.content, token.content))
def render_myst_role(self, token):
name = token.meta["name"]
text = token.content
rawsource = f":{name}:`{token.content}`"
lineno = token.map[0] if token.map else 0
role_func, messages = roles.role(
name, self.language_module, lineno, self.reporter
)
inliner = MockInliner(self, lineno)
if role_func:
nodes, messages2 = role_func(name, rawsource, text, lineno, inliner)
# return nodes, messages + messages2
self.current_node += nodes
else:
message = self.reporter.error(
'Unknown interpreted text role "{}".'.format(name), line=lineno
)
problematic = inliner.problematic(text, rawsource, message)
self.current_node += problematic
def render_directive(self, token: Token):
"""Render special fenced code blocks as directives."""
first_line = token.info.split(maxsplit=1)
name = first_line[0][1:-1]
arguments = "" if len(first_line) == 1 else first_line[1]
# TODO directive name white/black lists
content = token.content
position = token.map[0]
self.document.current_line = position
# get directive class
directive_class, messages = directives.directive(
name, self.language_module, self.document
) # type: (Directive, list)
if not directive_class:
error = self.reporter.error(
'Unknown directive type "{}".\n'.format(name),
# nodes.literal_block(content, content),
line=position,
)
self.current_node += [error] + messages
return
try:
arguments, options, body_lines = parse_directive_text(
directive_class, arguments, content
)
except DirectiveParsingError as error:
error = self.reporter.error(
"Directive '{}': {}".format(name, error),
nodes.literal_block(content, content),
line=position,
)
self.current_node += [error]
return
# initialise directive
if issubclass(directive_class, Include):
directive_instance = MockIncludeDirective(
self,
name=name,
klass=directive_class,
arguments=arguments,
options=options,
body=body_lines,
token=token,
)
else:
state_machine = MockStateMachine(self, position)
state = MockState(self, state_machine, position)
directive_instance = directive_class(
name=name,
# the list of positional arguments
arguments=arguments,
# a dictionary mapping option names to values
options=options,
# the directive content line by line
content=StringList(body_lines, self.document["source"]),
# the absolute line number of the first line of the directive
lineno=position,
# the line offset of the first line of the content
content_offset=0, # TODO get content offset from `parse_directive_text`
# a string containing the entire directive
block_text="\n".join(body_lines),
state=state,
state_machine=state_machine,
)
# run directive
try:
result = directive_instance.run()
except DirectiveError as error:
msg_node = self.reporter.system_message(
error.level, error.msg, line=position
)
msg_node += nodes.literal_block(content, content)
result = [msg_node]
except MockingError as exc:
error = self.reporter.error(
"Directive '{}' cannot be mocked: {}: {}".format(
name, exc.__class__.__name__, exc
),
nodes.literal_block(content, content),
line=position,
)
self.current_node += [error]
return
assert isinstance(
result, list
), 'Directive "{}" must return a list of nodes.'.format(name)
for i in range(len(result)):
assert isinstance(
result[i], nodes.Node
), 'Directive "{}" returned non-Node object (index {}): {}'.format(
name, i, result[i]
)
self.current_node += result
def dict_to_docinfo(data):
"""Render a key/val pair as a docutils field node."""
docinfo = nodes.docinfo()
for key, value in data.items():
if not isinstance(value, (str, int, float)):
value = json.dumps(value)
value = str(value)
field_node = nodes.field()
field_node.source = value
field_node += nodes.field_name(key, "", nodes.Text(key, key))
field_node += nodes.field_body(value, nodes.Text(value, value))
docinfo += field_node
return docinfo