summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rwxr-xr-xmd2pdf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/md2pdf.py b/md2pdf.py
index 3369f63..1e31e1f 100755
--- a/md2pdf.py
+++ b/md2pdf.py
@@ -39,7 +39,7 @@ else:
# convert the markdown file to html
mdsourcef = codecs.open(args.mdsource, mode="r", encoding="utf8")
-body = markdown.markdown(mdsourcef.read())
+body = markdown.markdown(mdsourcef.read(),['def_list'])
html = ''.join([head, body])
output_file = codecs.open("%s.html" % filename, "w", encoding="utf8")