massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / Markdown / markdown / extensions / smarty.pyi
1 from typing import Any
2
3 from markdown.extensions import Extension
4 from markdown.inlinepatterns import HtmlInlineProcessor
5
6 punctClass: str
7 endOfWordClass: str
8 closeClass: str
9 openingQuotesBase: str
10 substitutions: Any
11 singleQuoteStartRe: Any
12 doubleQuoteStartRe: Any
13 doubleQuoteSetsRe: str
14 singleQuoteSetsRe: str
15 decadeAbbrRe: str
16 openingDoubleQuotesRegex: Any
17 closingDoubleQuotesRegex: str
18 closingDoubleQuotesRegex2: Any
19 openingSingleQuotesRegex: Any
20 closingSingleQuotesRegex: Any
21 closingSingleQuotesRegex2: Any
22 remainingSingleQuotesRegex: str
23 remainingDoubleQuotesRegex: str
24 HTML_STRICT_RE: str
25
26 class SubstituteTextPattern(HtmlInlineProcessor):
27     replace: Any
28     def __init__(self, pattern, replace, md) -> None: ...
29
30 class SmartyExtension(Extension):
31     substitutions: Any
32     def __init__(self, **kwargs) -> None: ...
33     def educateDashes(self, md) -> None: ...
34     def educateEllipses(self, md) -> None: ...
35     def educateAngledQuotes(self, md) -> None: ...
36     def educateQuotes(self, md) -> None: ...
37     inlinePatterns: Any
38
39 def makeExtension(**kwargs): ...