diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2011-01-29 23:08:29 -0800 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2011-01-29 23:08:29 -0800 |
| commit | caa091e8105aca357f0ef91b43d636ec62127d5f (patch) | |
| tree | bc2dc64165f02a2054c4336cdb1a49b3dc882820 | |
| parent | 3b5dbe6fdb3888b263a52e001918b0e97789a38c (diff) | |
| download | pandoc-caa091e8105aca357f0ef91b43d636ec62127d5f.tar.gz | |
Highlighting: Fixed non-highlighting-kate version of highlightHtml.
| -rw-r--r-- | src/Text/Pandoc/Highlighting.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Highlighting.hs b/src/Text/Pandoc/Highlighting.hs index cf8d37431..5ddaf1379 100644 --- a/src/Text/Pandoc/Highlighting.hs +++ b/src/Text/Pandoc/Highlighting.hs @@ -69,6 +69,6 @@ languages = [] languagesByExtension :: String -> [String] languagesByExtension _ = [] -highlightHtml :: Attr -> String -> Either String Html -highlightHtml _ _ = Left "Pandoc was not compiled with support for highlighting" +highlightHtml :: Bool -> Attr -> String -> Either String Html +highlightHtml _ _ _ = Left "Pandoc was not compiled with support for highlighting" #endif |
