This commit is contained in:
2026-07-14 18:42:41 +02:00
parent 62e66948e4
commit 3f680b5e22
5 changed files with 246 additions and 12 deletions
+16
View File
@@ -39,6 +39,22 @@ print_token :: proc(token: ^Token, depth: int = 0) {
type_str = "ListItem"
case TokenType.Strikethrough:
type_str = "Strikethrough"
case TokenType.Table:
type_str = "Table"
case TokenType.TableRow:
type_str = "TableRow"
case TokenType.TableHeaderRow:
type_str = "TableHeaderRow"
case TokenType.TableCell:
type_str = "TableCell"
case TokenType.TableSeparator:
type_str = "TableSeparator"
case TokenType.Left:
type_str = "Left"
case TokenType.Right:
type_str = "Right"
case TokenType.Middle:
type_str = "Middle"
}
value_str := ""