massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / Markdown / markdown / postprocessors.pyi
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/Markdown/markdown/postprocessors.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/Markdown/markdown/postprocessors.pyi
new file mode 100644 (file)
index 0000000..47581da
--- /dev/null
@@ -0,0 +1,17 @@
+from typing import Any, Pattern
+
+from . import util
+
+def build_postprocessors(md, **kwargs): ...
+
+class Postprocessor(util.Processor):
+    def run(self, text) -> Any: ...
+
+class RawHtmlPostprocessor(Postprocessor):
+    def isblocklevel(self, html): ...
+
+class AndSubstitutePostprocessor(Postprocessor): ...
+
+class UnescapePostprocessor(Postprocessor):
+    RE: Pattern[str]
+    def unescape(self, m): ...