(data_regression)
| 292 | |
| 293 | |
| 294 | def test_table_tokens(data_regression): |
| 295 | md = MarkdownIt("js-default") |
| 296 | tokens = md.parse( |
| 297 | """ |
| 298 | | Heading 1 | Heading 2 |
| 299 | | --------- | --------- |
| 300 | | Cell 1 | Cell 2 |
| 301 | | Cell 3 | Cell 4 |
| 302 | """ |
| 303 | ) |
| 304 | data_regression.check([t.as_dict() for t in tokens]) |
| 305 | |
| 306 | |
| 307 | def test_fragments_join_merges_adjacent_text_tokens(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…