test(markdown): add GFM table parser failing tests
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
from dataclasses import dataclass
|
||||
|
||||
@dataclass(frozen=True)
|
||||
class TableBlock:
|
||||
headers: list[str]
|
||||
rows: list[list[str]]
|
||||
span: tuple[int, int]
|
||||
|
||||
def parse_tables(text: str) -> list[TableBlock]:
|
||||
return []
|
||||
Reference in New Issue
Block a user