diff options
Diffstat (limited to 'md2pdf.py')
-rwxr-xr-x | md2pdf.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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") |