HTML writer: Insert command to typeset mathjax for slideous output.

Closes #966.
This commit is contained in:
John MacFarlane 2013-10-13 11:31:33 -07:00
parent 1a55c8f5de
commit 2ae7f5e2a0

View file

@ -144,7 +144,11 @@ pandocToHtml opts (Pandoc meta blocks) = do
MathJax url ->
H.script ! A.src (toValue url)
! A.type_ "text/javascript"
$ mempty
$ case writerSlideVariant opts of
SlideousSlides ->
preEscapedString
"MathJax.Hub.Queue([\"Typeset\",MathJax.Hub]);"
_ -> mempty
JsMath (Just url) ->
H.script ! A.src (toValue url)
! A.type_ "text/javascript"