Merge pull request #465 from newptcai/font-size

Removed hard coded font size for PDF
pull/443/merge
Sebastian Pfitzner 2023-02-10 10:29:31 +01:00 committed by GitHub
commit 20aaefec0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ function write_doc(docformat::Pandoc2PDF, doc, rendered, out_path)
cmd = `pandoc -f markdown+raw_tex -s --pdf-engine=xelatex --highlight-style=tango
$filt $citeproc $(docformat.pandoc_options)
--include-in-header=$(docformat.header_template)
-V fontsize=12pt -o $(out)`
-o $(out)`
proc = open(cmd, "r+")
println(proc.in, rendered)
close(proc.in)