aboutsummaryrefslogtreecommitdiffstats
path: root/parser.py
diff options
context:
space:
mode:
Diffstat (limited to 'parser.py')
-rwxr-xr-xparser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/parser.py b/parser.py
index 230f8c5..d109c8e 100755
--- a/parser.py
+++ b/parser.py
@@ -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)