mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
Markdown: BlockProcessor.detab returns a pair of strings (#8586)
This commit is contained in:
@@ -16,7 +16,7 @@ class BlockProcessor:
|
||||
tab_length: int
|
||||
def __init__(self, parser: BlockParser) -> None: ...
|
||||
def lastChild(self, parent: Element) -> Element | None: ...
|
||||
def detab(self, text: str, length: int | None = ...) -> str: ...
|
||||
def detab(self, text: str, length: int | None = ...) -> tuple[str, str]: ...
|
||||
def looseDetab(self, text: str, level: int = ...) -> str: ...
|
||||
def test(self, parent: Element, block: str) -> bool: ...
|
||||
def run(self, parent: Element, blocks: list[str]) -> bool | None: ...
|
||||
|
||||
Reference in New Issue
Block a user