__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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 Iterator
from re import Pattern
from typing import Any, Generic, TypedDict, TypeVar, overload
from markdown.core import Markdown
_T = TypeVar("_T")
BLOCK_LEVEL_ELEMENTS: list[str]
STX: str
ETX: str
INLINE_PLACEHOLDER_PREFIX: str
INLINE_PLACEHOLDER: str
INLINE_PLACEHOLDER_RE: Pattern[str]
AMP_SUBSTITUTE: str
HTML_PLACEHOLDER: str
HTML_PLACEHOLDER_RE: Pattern[str]
TAG_PLACEHOLDER: str
RTL_BIDI_RANGES: Any
def get_installed_extensions(): ...
def deprecated(message: str, stacklevel: int = 2): ...
@overload
def parseBoolValue(value: str) -> bool: ...
@overload
def parseBoolValue(value: str | None, fail_on_errors: bool = True, preserve_none: bool = False) -> bool | None: ...
def code_escape(text: str) -> str: ...
def nearing_recursion_limit() -> bool: ...
class AtomicString(str): ...
class Processor:
md: Markdown
def __init__(self, md: Markdown | None = None) -> None: ...
class _TagData(TypedDict):
tag: str
attrs: dict[str, str]
left_index: int
right_index: int
class HtmlStash:
html_counter: int
rawHtmlBlocks: list[str]
tag_counter: int
tag_data: list[_TagData]
def __init__(self) -> None: ...
def store(self, html: str) -> str: ...
def reset(self) -> None: ...
def get_placeholder(self, key: int) -> str: ...
def store_tag(self, tag: str, attrs: dict[str, str], left_index: int, right_index: int) -> str: ...
class Registry(Generic[_T]):
def __init__(self) -> None: ...
def __contains__(self, item: str | _T) -> bool: ...
def __iter__(self) -> Iterator[_T]: ...
@overload
def __getitem__(self, key: slice) -> Registry[_T]: ...
@overload
def __getitem__(self, key: str | int) -> _T: ...
def __len__(self) -> int: ...
def get_index_for_name(self, name: str) -> int: ...
def register(self, item: _T, name: str, priority: float) -> None: ...
def deregister(self, name: str, strict: bool = True) -> 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 |
|