summaryrefslogtreecommitdiffstats
path: root/main.scm
diff options
context:
space:
mode:
Diffstat (limited to 'main.scm')
-rw-r--r--main.scm5
1 files changed, 4 insertions, 1 deletions
diff --git a/main.scm b/main.scm
index 672777c..c92081b 100644
--- a/main.scm
+++ b/main.scm
@@ -209,7 +209,10 @@
"-o" html-path
"--standalone"
"--template" template-path
- "--highlight-style" "breezedark"))
+ ;; any style is ok here, the styles are overriden with CSS
+ ;; to support dark and light themes.
+ ;; --no-highlight would produce a non-formatted output
+ "--highlight-style" "pygments"))
(define output-port (process "pandoc" args))
;; read and discard output in order to wait for completion
(read-string #f output-port)