massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / Markdown / markdown / postprocessors.pyi
1 from typing import Any, Pattern
2
3 from . import util
4
5 def build_postprocessors(md, **kwargs): ...
6
7 class Postprocessor(util.Processor):
8     def run(self, text) -> Any: ...
9
10 class RawHtmlPostprocessor(Postprocessor):
11     def isblocklevel(self, html): ...
12
13 class AndSubstitutePostprocessor(Postprocessor): ...
14
15 class UnescapePostprocessor(Postprocessor):
16     RE: Pattern[str]
17     def unescape(self, m): ...