diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2022-09-10 16:03:18 +0000 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2022-09-10 16:03:18 +0000 |
commit | bd56feacbcef9780e8fce35d5aac5a68520316a8 (patch) | |
tree | 1466d448c79da8a9d4bb8b871ec081d263e22185 /parser.py | |
parent | 787a9421d1a61229b838dcbf17734c42172800f7 (diff) | |
download | boymoder.blog-bd56feacbcef9780e8fce35d5aac5a68520316a8.tar.gz boymoder.blog-bd56feacbcef9780e8fce35d5aac5a68520316a8.zip |
Added key-value lists to markdown parser
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) |