Private
Public Access
0
0

test(markdown): add GFM table parser failing tests

This commit is contained in:
2026-06-03 10:59:57 -04:00
parent 11253e8d60
commit 44f631c9a5
2 changed files with 38 additions and 0 deletions
+10
View File
@@ -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 []