2008-02-09 03:21:19 +00:00
|
|
|
{-
|
|
|
|
Copyright (C) 2008 John MacFarlane <jgm@berkeley.edu>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
-}
|
|
|
|
|
|
|
|
{- |
|
|
|
|
Module : Text.Pandoc.Highlighting
|
|
|
|
Copyright : Copyright (C) 2008 John MacFarlane
|
2011-12-15 21:17:32 -08:00
|
|
|
License : GNU GPL, version 2 or above
|
2008-02-09 03:21:19 +00:00
|
|
|
|
|
|
|
Maintainer : John MacFarlane <jgm@berkeley.edu>
|
|
|
|
Stability : alpha
|
|
|
|
Portability : portable
|
|
|
|
|
|
|
|
Exports functions for syntax highlighting.
|
|
|
|
-}
|
|
|
|
|
2011-12-19 11:51:17 -08:00
|
|
|
module Text.Pandoc.Highlighting ( languages
|
|
|
|
, highlightHtml
|
|
|
|
, highlightLaTeX
|
|
|
|
, defaultHighlightingCss
|
2011-12-23 18:05:14 -08:00
|
|
|
, defaultLaTeXMacros
|
2011-12-19 11:51:17 -08:00
|
|
|
, languagesByExtension
|
|
|
|
) where
|
2011-12-15 21:17:32 -08:00
|
|
|
import Text.Blaze
|
2008-07-31 06:35:46 +00:00
|
|
|
import Text.Pandoc.Definition
|
2011-12-19 11:51:17 -08:00
|
|
|
import Text.Highlighting.Kate ( SourceLine, languages, highlightAs, formatAsHtml,
|
2011-12-23 18:05:14 -08:00
|
|
|
TokenType(..), formatAsLaTeX, FormatOption (..), defaultHighlightingCss,
|
|
|
|
defaultLaTeXMacros, languagesByExtension )
|
2009-12-31 16:48:36 +00:00
|
|
|
import Data.List (find)
|
2008-02-10 18:59:34 +00:00
|
|
|
import Data.Maybe (fromMaybe)
|
2008-02-09 03:21:19 +00:00
|
|
|
import Data.Char (toLower)
|
2011-12-18 12:33:11 -08:00
|
|
|
import qualified Text.Blaze.Html5.Attributes as A
|
2008-02-09 03:21:19 +00:00
|
|
|
|
2011-12-19 11:51:17 -08:00
|
|
|
highlight :: ([FormatOption] -> String -> [SourceLine] -> a) -- ^ Formatter
|
|
|
|
-> Bool -- ^ True if inline
|
|
|
|
-> Attr -- ^ Attributes of the Code or CodeBlock
|
|
|
|
-> String -- ^ Raw contents of the Code or CodeBlock
|
2011-12-22 00:33:38 -08:00
|
|
|
-> Maybe a -- ^ Maybe the formatted result
|
2011-12-19 11:51:17 -08:00
|
|
|
highlight formatter inline (_, classes, keyvals) rawCode =
|
2011-12-18 11:42:24 -08:00
|
|
|
let firstNum = case reads (fromMaybe "1" $ lookup "startFrom" keyvals) of
|
|
|
|
((n,_):_) -> n
|
|
|
|
[] -> 1
|
2008-02-10 18:59:34 +00:00
|
|
|
fmtOpts = [OptNumberFrom firstNum] ++
|
2011-01-29 16:04:07 -08:00
|
|
|
[OptInline | inline] ++
|
2008-02-10 18:59:34 +00:00
|
|
|
case find (`elem` ["number","numberLines","number-lines"]) classes of
|
2008-02-09 03:21:19 +00:00
|
|
|
Nothing -> []
|
|
|
|
Just _ -> [OptNumberLines]
|
2009-11-21 04:40:59 +00:00
|
|
|
addBirdTracks = "literate" `elem` classes
|
2008-02-09 03:21:19 +00:00
|
|
|
lcLanguages = map (map toLower) languages
|
|
|
|
in case find (\c -> (map toLower c) `elem` lcLanguages) classes of
|
2011-12-22 00:33:38 -08:00
|
|
|
Nothing -> Nothing
|
|
|
|
Just language -> Just
|
|
|
|
$ formatter fmtOpts language .
|
|
|
|
(if addBirdTracks
|
|
|
|
then map ((OtherTok,"> "):)
|
|
|
|
else id)
|
|
|
|
$ highlightAs language rawCode
|
2008-02-09 03:21:19 +00:00
|
|
|
|
2011-12-19 11:51:17 -08:00
|
|
|
highlightHtml :: Bool -- ^ True if inline HTML
|
|
|
|
-> Attr -- ^ Attributes of the Code or CodeBlock
|
|
|
|
-> String -- ^ Raw contents of the Code or CodeBlock
|
2011-12-22 00:33:38 -08:00
|
|
|
-> Maybe Html -- ^ Maybe formatted Html
|
2011-12-19 11:51:17 -08:00
|
|
|
highlightHtml inline attr@(id',_,_) = fmap addId . highlight formatAsHtml inline attr
|
|
|
|
where addId = if null id' then id else (! A.id (toValue id'))
|
|
|
|
|
|
|
|
highlightLaTeX :: Bool -- ^ True if inline
|
|
|
|
-> Attr -- ^ Attributes of the Code or CodeBlock
|
|
|
|
-> String -- ^ Raw contents of the Code or CodeBlock
|
2011-12-22 00:33:38 -08:00
|
|
|
-> Maybe String -- ^ Maybe formatted LaTeX
|
2011-12-19 11:51:17 -08:00
|
|
|
highlightLaTeX = highlight formatAsLaTeX
|
|
|
|
|