diff --git a/md_pdf/build/pdf.py b/md_pdf/build/pdf.py index 9c26923..b498b5d 100644 --- a/md_pdf/build/pdf.py +++ b/md_pdf/build/pdf.py @@ -49,6 +49,6 @@ def export_pdf(content, config): os.path.join(os.path.abspath(config['output_dir']), 'output.pdf'), options=PDF_OPTIONS, cover=FILE_NAME_FORMAT.format('cover'), - toc=TOC_OPTIONS, + toc=TOC_OPTIONS if config['toc'] else {}, cover_first=True )