Home
last modified time | relevance | path

Searched refs:md_instance (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/markdown/
Dinlinepatterns.py91 def build_inlinepatterns(md_instance, **kwargs): argument
95 inlinePatterns["escape"] = EscapePattern(ESCAPE_RE, md_instance)
96 inlinePatterns["reference"] = ReferencePattern(REFERENCE_RE, md_instance)
97 inlinePatterns["link"] = LinkPattern(LINK_RE, md_instance)
98 inlinePatterns["image_link"] = ImagePattern(IMAGE_LINK_RE, md_instance)
100 ImageReferencePattern(IMAGE_REFERENCE_RE, md_instance)
102 ReferencePattern(SHORT_REF_RE, md_instance)
103 inlinePatterns["autolink"] = AutolinkPattern(AUTOLINK_RE, md_instance)
104 inlinePatterns["automail"] = AutomailPattern(AUTOMAIL_RE, md_instance)
106 if md_instance.safeMode != 'escape':
[all …]
Dpreprocessors.py48 def build_preprocessors(md_instance, **kwargs): argument
51 preprocessors['normalize_whitespace'] = NormalizeWhitespace(md_instance)
52 if md_instance.safeMode != 'escape':
53 preprocessors["html_block"] = HtmlBlockPreprocessor(md_instance)
54 preprocessors["reference"] = ReferencePreprocessor(md_instance)
Dpostprocessors.py50 def build_postprocessors(md_instance, **kwargs): argument
53 postprocessors["raw_html"] = RawHtmlPostprocessor(md_instance)
Dtreeprocessors.py40 def build_treeprocessors(md_instance, **kwargs): argument
43 treeprocessors["inline"] = InlineProcessor(md_instance)
44 treeprocessors["prettify"] = PrettifyTreeprocessor(md_instance)
Dblockprocessors.py57 def build_block_parser(md_instance, **kwargs): argument
59 parser = BlockParser(md_instance)