From e9dcdfe23f9049d9e9639149c37d2badb49a22a9 Mon Sep 17 00:00:00 2001 From: Volker Schukai <volker.schukai@schukai.com> Date: Tue, 19 Mar 2024 16:37:44 +0100 Subject: [PATCH] fix: str_uppercase issue #49 --- source/pandoc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/pandoc.go b/source/pandoc.go index 86896ec..65a07df 100644 --- a/source/pandoc.go +++ b/source/pandoc.go @@ -14,7 +14,7 @@ func convertToPDF(source string, outputName string, latexPath string) string { arguments += "--variable fontsize=12pt " arguments += "--variable version=2.0 " arguments += source + " " - arguments += "--pdf-engine=xelatex " + // arguments += "--pdf-engine=xelatex " arguments += "--listings " if latexPath != "" { -- GitLab