| |
|
|
| |
|
|
| |
| |
| |
|
|
| |
| |
| |
| |
|
|
| |
| |
| |
|
|
| |
|
|
| """ |
| |
| Post-processors run on the text of the entire document after is has been serialized into a string. |
| Postprocessors should be used to work with the text just before output. Usually, they are used add |
| back sections that were extracted in a preprocessor, fix up outgoing encodings, or wrap the whole |
| document. |
| |
| """ |
|
|
| from __future__ import annotations |
|
|
| from typing import TYPE_CHECKING, Any |
| from . import util |
| import re |
|
|
| if TYPE_CHECKING: |
| from markdown import Markdown |
|
|
|
|
| def build_postprocessors(md: Markdown, **kwargs: Any) -> util.Registry[Postprocessor]: |
| """ Build the default postprocessors for Markdown. """ |
| postprocessors = util.Registry() |
| postprocessors.register(RawHtmlPostprocessor(md), 'raw_html', 30) |
| postprocessors.register(AndSubstitutePostprocessor(), 'amp_substitute', 20) |
| return postprocessors |
|
|
|
|
| class Postprocessor(util.Processor): |
| """ |
| Postprocessors are run after the ElementTree it converted back into text. |
| |
| Each Postprocessor implements a `run` method that takes a pointer to a |
| text string, modifies it as necessary and returns a text string. |
| |
| Postprocessors must extend `Postprocessor`. |
| |
| """ |
|
|
| def run(self, text: str) -> str: |
| """ |
| Subclasses of `Postprocessor` should implement a `run` method, which |
| takes the html document as a single text string and returns a |
| (possibly modified) string. |
| |
| """ |
| pass |
|
|
|
|
| class RawHtmlPostprocessor(Postprocessor): |
| """ Restore raw html to the document. """ |
|
|
| BLOCK_LEVEL_REGEX = re.compile(r'^\<\/?([^ >]+)') |
|
|
| def run(self, text: str) -> str: |
| """ Iterate over html stash and restore html. """ |
| def substitute_match(m: re.Match[str]) -> str: |
| if key := m.group(1): |
| wrapped = True |
| else: |
| key = m.group(2) |
| wrapped = False |
| if (key := int(key)) >= self.md.htmlStash.html_counter: |
| return m.group(0) |
| html = self.stash_to_string(self.md.htmlStash.rawHtmlBlocks[key]) |
| if not wrapped or self.isblocklevel(html): |
| return pattern.sub(substitute_match, html) |
| return pattern.sub(substitute_match, f"<p>{html}</p>") |
|
|
| if self.md.htmlStash.html_counter: |
| base_placeholder = util.HTML_PLACEHOLDER % r'([0-9]+)' |
| pattern = re.compile(f'<p>{ base_placeholder }</p>|{ base_placeholder }') |
| return pattern.sub(substitute_match, text) |
| else: |
| return text |
|
|
| def isblocklevel(self, html: str) -> bool: |
| """ Check is block of HTML is block-level. """ |
| m = self.BLOCK_LEVEL_REGEX.match(html) |
| if m: |
| if m.group(1)[0] in ('!', '?', '@', '%'): |
| |
| return True |
| return self.md.is_block_level(m.group(1)) |
| return False |
|
|
| def stash_to_string(self, text: str) -> str: |
| """ Convert a stashed object to a string. """ |
| return str(text) |
|
|
|
|
| class AndSubstitutePostprocessor(Postprocessor): |
| """ Restore valid entities """ |
|
|
| def run(self, text: str) -> str: |
| text = text.replace(util.AMP_SUBSTITUTE, "&") |
| return text |
|
|
|
|
| @util.deprecated( |
| "This class is deprecated and will be removed in the future; " |
| "use [`UnescapeTreeprocessor`][markdown.treeprocessors.UnescapeTreeprocessor] instead." |
| ) |
| class UnescapePostprocessor(Postprocessor): |
| """ Restore escaped chars. """ |
|
|
| RE = re.compile(r'{}(\d+){}'.format(util.STX, util.ETX)) |
|
|
| def unescape(self, m: re.Match[str]) -> str: |
| return chr(int(m.group(1))) |
|
|
| def run(self, text: str) -> str: |
| return self.RE.sub(self.unescape, text) |
|
|