β€Ήβ€Ί markdown.extensions.md_in_html ΒΆ

Parse Markdown syntax within raw HTML. Based on the implementation in PHP Markdown Extra.

See the documentation for details.

Classes:

β€Ήβ€Ί markdown.extensions.md_in_html.HTMLExtractorExtra(md: Markdown, *args, **kwargs) ΒΆ

Bases: HTMLExtractor

Override HTMLExtractor and create etree Elements for any elements which should have content parsed as Markdown.

Methods:

  • reset –

    Reset this instance. Loses all unprocessed data.

  • close –

    Handle any buffered data.

  • get_element –

    Return element from treebuilder and reset treebuilder for later use.

  • get_state –

    Return state from tag and markdown attribute. One of β€˜block’, β€˜span’, or β€˜off’.

β€Ήβ€Ί markdown.extensions.md_in_html.HTMLExtractorExtra.reset() ΒΆ

Reset this instance. Loses all unprocessed data.

β€Ήβ€Ί markdown.extensions.md_in_html.HTMLExtractorExtra.close() ΒΆ

Handle any buffered data.

β€Ήβ€Ί markdown.extensions.md_in_html.HTMLExtractorExtra.get_element() -> etree.Element ΒΆ

Return element from treebuilder and reset treebuilder for later use.

β€Ήβ€Ί markdown.extensions.md_in_html.HTMLExtractorExtra.get_state(tag, attrs: Mapping[str, str]) -> Literal['block', 'span', 'off', None] ΒΆ

Return state from tag and markdown attribute. One of β€˜block’, β€˜span’, or β€˜off’.

β€Ήβ€Ί markdown.extensions.md_in_html.HtmlBlockPreprocessor(md: Markdown | None = None) ΒΆ

Bases: Preprocessor

Remove html blocks from the text and store them for later retrieval.

β€Ήβ€Ί markdown.extensions.md_in_html.MarkdownInHtmlProcessor(parser: BlockParser) ΒΆ

Bases: BlockProcessor

Process Markdown Inside HTML Blocks which have been stored in the HtmlStash.

Methods:

β€Ήβ€Ί markdown.extensions.md_in_html.MarkdownInHtmlProcessor.parse_element_content(element: etree.Element) -> None ΒΆ

Recursively parse the text content of an etree Element as Markdown.

Any block level elements generated from the Markdown will be inserted as children of the element in place of the text content. All markdown attributes are removed. For any elements in which Markdown parsing has been disabled, the text content of it and its children are wrapped in an AtomicString.

β€Ήβ€Ί markdown.extensions.md_in_html.MarkdownInHTMLPostprocessor(md: Markdown | None = None) ΒΆ

Bases: RawHtmlPostprocessor

Methods:

  • stash_to_string –

    Override default to handle any etree elements still in the stash.

β€Ήβ€Ί markdown.extensions.md_in_html.MarkdownInHTMLPostprocessor.stash_to_string(text: str | etree.Element) -> str ΒΆ

Override default to handle any etree elements still in the stash.

β€Ήβ€Ί markdown.extensions.md_in_html.MarkdownInHtmlExtension(**kwargs) ΒΆ

Bases: Extension

Add Markdown parsing in HTML to Markdown class.

Methods:

β€Ήβ€Ί markdown.extensions.md_in_html.MarkdownInHtmlExtension.extendMarkdown(md) ΒΆ

Register extension instances.