1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
from pathlib import Path
from markdown_it import MarkdownIt
from markdown_it.token import Token
from markdown_it.utils import read_fixture_file
import pytest
from mdit_py_plugins.myst_blocks import myst_block_plugin
FIXTURE_PATH = Path(__file__).parent.joinpath("fixtures", "myst_block.md")
@pytest.mark.parametrize("line,title,input,expected", read_fixture_file(FIXTURE_PATH))
def test_all(line, title, input, expected):
md = MarkdownIt("commonmark").use(myst_block_plugin)
md.options["xhtmlOut"] = False
text = md.render(input)
print(text)
assert text.rstrip() == expected.rstrip()
def test_block_token():
md = MarkdownIt("commonmark").use(myst_block_plugin)
tokens = md.parse("+++")
expected_token = Token(
type="myst_block_break",
tag="hr",
nesting=0,
map=[0, 1],
level=0,
children=None,
content="",
markup="+++",
info="",
meta={},
block=True,
hidden=False,
)
expected_token.attrSet("class", "myst-block")
assert tokens == [expected_token]
tokens = md.parse("\n+ + + abc")
expected_token = Token(
type="myst_block_break",
tag="hr",
nesting=0,
map=[1, 2],
level=0,
children=None,
content="abc",
markup="+++",
info="",
meta={},
block=True,
hidden=False,
)
expected_token.attrSet("class", "myst-block")
assert tokens == [expected_token]
def test_comment_token():
md = MarkdownIt("commonmark").use(myst_block_plugin)
tokens = md.parse("\n\n% abc \n%def")
expected_token = Token(
type="myst_line_comment",
tag="",
nesting=0,
map=[2, 4],
level=0,
children=None,
content=" abc\ndef",
markup="%",
info="",
meta={},
block=True,
hidden=False,
)
expected_token.attrSet("class", "myst-line-comment")
assert tokens == [expected_token]
|