__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
from collections.abc import Iterable
from typing import Any, TypeVar
from xml.etree.ElementTree import Element, ElementTree
from markdown import blockprocessors, util
from markdown.core import Markdown
_T = TypeVar("_T")
class State(list[_T]):
def set(self, state: _T) -> None: ...
def reset(self) -> None: ...
def isstate(self, state: _T) -> bool: ...
class BlockParser:
blockprocessors: util.Registry[blockprocessors.BlockProcessor]
state: State[Any] # TODO: possible to get rid of Any?
md: Markdown
def __init__(self, md: Markdown) -> None: ...
root: Element
def parseDocument(self, lines: Iterable[str]) -> ElementTree: ...
def parseChunk(self, parent: Element, text: str) -> None: ...
def parseBlocks(self, parent: Element, blocks: list[str]) -> None: ...
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| extensions | Folder | 0755 |
|
|
| __init__.pyi | File | 146 B | 0644 |
|
| __meta__.pyi | File | 66 B | 0644 |
|
| blockparser.pyi | File | 810 B | 0644 |
|
| blockprocessors.pyi | File | 2.14 KB | 0644 |
|
| core.pyi | File | 2.64 KB | 0644 |
|
| inlinepatterns.pyi | File | 3.81 KB | 0644 |
|
| postprocessors.pyi | File | 423 B | 0644 |
|
| preprocessors.pyi | File | 324 B | 0644 |
|
| py.typed | File | 8 B | 0644 |
|
| serializers.pyi | File | 142 B | 0644 |
|
| treeprocessors.pyi | File | 913 B | 0644 |
|
| util.pyi | File | 1.91 KB | 0644 |
|