massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / Markdown / markdown / extensions / legacy_attrs.pyi
1 from typing import Pattern
2
3 from markdown.extensions import Extension
4 from markdown.treeprocessors import Treeprocessor
5
6 ATTR_RE: Pattern[str]
7
8 class LegacyAttrs(Treeprocessor):
9     def handleAttributes(self, el, txt): ...
10
11 class LegacyAttrExtension(Extension): ...
12
13 def makeExtension(**kwargs): ...