blob: 62b5bf85e7cd99251f6a4e7e86f652986bbda562 (
plain)
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
|
from markdown_it import MarkdownIt, presets
def test_highlight_arguments():
def highlight_func(str_, lang, attrs):
assert lang == "a"
assert attrs == "b c d"
return "<pre><code>==" + str_ + "==</code></pre>"
conf = presets.commonmark.make()
conf["options"]["highlight"] = highlight_func
md = MarkdownIt(config=conf)
assert md.render("``` a b c d \nhl\n```") == "<pre><code>==hl\n==</code></pre>\n"
def test_ordered_list_info():
def type_filter(tokens, type_):
return [t for t in tokens if t.type == type_]
md = MarkdownIt()
tokens = md.parse("1. Foo\n2. Bar\n20. Fuzz")
assert len(type_filter(tokens, "ordered_list_open")) == 1
tokens = type_filter(tokens, "list_item_open")
assert len(tokens) == 3
assert tokens[0].info == "1"
assert tokens[0].markup == "."
assert tokens[1].info == "2"
assert tokens[1].markup == "."
assert tokens[2].info == "20"
assert tokens[2].markup == "."
tokens = md.parse(" 1. Foo\n2. Bar\n 20. Fuzz\n 199. Flp")
assert len(type_filter(tokens, "ordered_list_open")) == 1
tokens = type_filter(tokens, "list_item_open")
assert len(tokens) == 4
assert tokens[0].info == "1"
assert tokens[0].markup == "."
assert tokens[1].info == "2"
assert tokens[1].markup == "."
assert tokens[2].info == "20"
assert tokens[2].markup == "."
assert tokens[3].info == "199"
assert tokens[3].markup == "."
|