pandoc: disable highlight of custom fenced blocks for now

This commit is contained in:
Louis Gesbert 2024-02-15 12:07:29 +01:00
parent 23287ef817
commit a2d82d01f5
2 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,6 @@ let wrap_latex
\usepackage{framed}
\usepackage{newunicodechar}
\usepackage{textcomp}
\usepackage[hidelinks]{hyperref}
\usepackage[dvipsnames]{xcolor}
\usepackage[left=2cm,right=2cm,top=3cm,bottom=3cm,headheight=2cm]{geometry}
\usepackage[many]{tcolorbox}

View File

@ -80,6 +80,7 @@ let run_pandoc (s : string) (backend : [ `Html | `Latex ]) : string =
"-f";
"markdown+multiline_tables+tex_math_dollars";
"--mathjax";
"--no-highlight";
"-t";
(match backend with `Html -> "html" | `Latex -> "latex");
"-o";