(line, title, input, expected)
| 119 | read_fixture_file(FIXTURE_PATH.joinpath("disable_code_block.md")), |
| 120 | ) |
| 121 | def test_disable_code_block(line, title, input, expected): |
| 122 | md = MarkdownIt().enable("table").disable("code") |
| 123 | text = md.render(input) |
| 124 | print(text.rstrip()) |
| 125 | assert text.rstrip() == expected.rstrip() |
| 126 | |
| 127 | |
| 128 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…