Added highlightLaTeX stub when not compiled w/ highlighting.

This commit is contained in:
John MacFarlane 2011-12-19 21:59:35 -08:00
parent a936e5d34f
commit 569fc4c67a

View file

@ -94,4 +94,7 @@ languagesByExtension _ = []
highlightHtml :: Bool -> Attr -> String -> Either String Html
highlightHtml _ _ _ = Left "Pandoc was not compiled with support for highlighting"
highlightLaTeX :: Bool -> Attr -> String -> Either String String
highlightLaTeX _ _ _ = Left "Pandoc was not compiled with support for highlighting"
#endif