()
| 86 | |
| 87 | |
| 88 | def test_override_options(): |
| 89 | md = MarkdownIt("zero") |
| 90 | assert md.options["maxNesting"] == 20 |
| 91 | md = MarkdownIt("zero", {"maxNesting": 99}) |
| 92 | assert md.options["maxNesting"] == 99 |
| 93 | |
| 94 | |
| 95 | def test_gfm_like2_tasklists_editable(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…