Skip to content

Commit 54e3463

Browse files
committed
Fixing precedence order
1 parent 3a6edf6 commit 54e3463

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mistletoe/block_token.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
"""
1919
Tokens to be included in the parsing process, in the order specified.
2020
"""
21-
__all__ = ['BlockCode', 'DefinitionList', 'DefinitionTerm', 'DefinitionDesc',
22-
'Heading', 'Quote', 'CodeFence', 'ThematicBreak', 'List',
23-
'Table', 'Footnote', 'Paragraph']
21+
__all__ = ['BlockCode', 'Heading', 'Quote', 'CodeFence', 'ThematicBreak',
22+
'List', 'Table', 'Footnote', 'DefinitionList',
23+
'Paragraph', 'DefinitionTerm', 'DefinitionDesc']
2424

2525

2626
def tokenize(lines):

0 commit comments

Comments
 (0)