diff options
Diffstat (limited to 'parser.py')
-rwxr-xr-x | parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -64,7 +64,7 @@ def parse_file(path): def parse_text(unformatted): md = mistune.create_markdown( renderer = EdawebRenderer(), - plugins = ["strikethrough", "table", "url", "task_lists"] + plugins = ["strikethrough", "table", "url", "task_lists", "def_list"] ) html = md(unformatted) |