blob: 0515b92083eff2efb5d8784d1f3da1f46c252dee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
from pathlib import Path
from markdown_it import MarkdownIt
from markdown_it.utils import read_fixture_file
import pytest
from mdit_py_plugins.anchors import anchors_plugin
FIXTURE_PATH = Path(__file__).parent
@pytest.mark.parametrize(
"line,title,input,expected",
read_fixture_file(FIXTURE_PATH.joinpath("fixtures", "anchors.md")),
)
def test_fixtures(line, title, input, expected):
md = MarkdownIt("commonmark").use(
anchors_plugin,
permalink="(permalink" in title,
permalinkBefore="before)" in title,
)
text = md.render(input)
assert text.rstrip() == expected.rstrip()
|