From cc1560a76e4e671254cf6e00d99167bd5619c9bb Mon Sep 17 00:00:00 2001 From: Arnaud Legrand Date: Mon, 25 Mar 2019 09:43:04 +0100 Subject: [PATCH] Use mathjax in pandoc... --- bin/pandoc_fixer.pl | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bin/pandoc_fixer.pl b/bin/pandoc_fixer.pl index ed5b0d9..1649973 100755 --- a/bin/pandoc_fixer.pl +++ b/bin/pandoc_fixer.pl @@ -36,9 +36,7 @@ my($gitlab_origin)= "https://gitlab.inria.fr/learninglab/mooc-rr/mooc-rr-ressour ########### Pandoc ################# print "Exporting $input\n"; -my($pandoc_output) = `LANG=C ; pandoc -s -f $type -t html -o $output_temp $input`; - -open INPUT, $output_temp or die; +my($pandoc_output) = `LANG=C ; pandoc -s --mathjax -f $type -t html -o $output_temp $input`;open INPUT, $output_temp or die; open OUTPUT, "> ".$output or die; -- 2.18.1