-
Description
I'm almost sure that in earlier days of Quarto the above mentioned I'm looking a way to disable the syntax highlighting completely. Pandoc offers |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I am not sure about that. In the help part To note that in pandoc, all command CLI flag can also be passed using YAML. We map most of those.
The one you need is highlight-style: none Maybe we don't document this correctly 🤔 - I'll look Another note: Future pandoc version will deprecate Hope it helps |
Beta Was this translation helpful? Give feedback.
I am not sure about that. In the help part
pandoc-args
is a placeholder for any pandoc argument taken at command line. in Rmarkdownrmarkdown::render()
has apandoc_args
config, but that is different.To note that in pandoc, all command CLI flag can also be passed using YAML. We map most of those.
The one you need is
highlight-style
, and you need to set it tonone
Maybe we don't document this correctly 🤔 - I'll look
Another note: Future pandoc version will deprecate
…