Fixed Pandoc warning

I was using --chapter, which is deprecated by PanDoc.
This commit is contained in:
Roger Labbe 2018-07-14 08:47:32 -07:00
parent 8507d8baae
commit 2eb5b67ddf
1 changed files with 1 additions and 1 deletions

View File

@ -31,6 +31,6 @@
((* endblock predoc *))
((* block markdowncell scoped *))
((( cell.source | citation2latex | strip_files_prefix | convert_pandoc('markdown+tex_math_double_backslash', 'json',extra_args=[]) | resolve_references | convert_pandoc('json','latex', extra_args=["--chapters"]) )))
((( cell.source | citation2latex | strip_files_prefix | convert_pandoc('markdown+tex_math_double_backslash', 'json',extra_args=[]) | resolve_references | convert_pandoc('json','latex', extra_args=["--top-level-division=chapter"]) )))
((* endblock markdowncell *))