Skip to content

Commit

Permalink
Mathjax in HTML slide shows: include explicit "Typeset" instruction.
Browse files Browse the repository at this point in the history
This seems to be needed for some formats (e.g. slideous) and won't
hurt in others.

Closes #966.
  • Loading branch information
John MacFarlane committed Sep 1, 2013
1 parent 8e61a62 commit 8b0052b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Text/Pandoc/Writers/HTML.hs
Expand Up @@ -143,7 +143,8 @@ pandocToHtml opts (Pandoc meta blocks) = do
MathJax url ->
H.script ! A.src (toValue url)
! A.type_ "text/javascript"
$ mempty
$ preEscapedString
"MathJax.Hub.Queue([\"Typeset\",MathJax.Hub]);"
JsMath (Just url) ->
H.script ! A.src (toValue url)
! A.type_ "text/javascript"
Expand Down

0 comments on commit 8b0052b

Please sign in to comment.