massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / Markdown / markdown / extensions / meta.pyi
1 from typing import Any, Pattern
2
3 from markdown.extensions import Extension
4 from markdown.preprocessors import Preprocessor
5
6 log: Any
7 META_RE: Pattern[str]
8 META_MORE_RE: Pattern[str]
9 BEGIN_RE: Pattern[str]
10 END_RE: Pattern[str]
11
12 class MetaExtension(Extension):
13     md: Any
14     def reset(self) -> None: ...
15
16 class MetaPreprocessor(Preprocessor): ...
17
18 def makeExtension(**kwargs): ...