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
|
|
|
|
, languagesByExtension
|
2011-12-26 22:49:50 -08:00
|
|
|
, highlight
|
|
|
|
, formatLaTeXInline
|
|
|
|
, formatLaTeXBlock
|
|
|
|
, styleToLaTeX
|
|
|
|
, formatHtmlInline
|
|
|
|
, formatHtmlBlock
|
2012-01-25 11:29:42 -08:00
|
|
|
, styleToCss
|
2011-12-26 22:49:50 -08:00
|
|
|
, pygments
|
2011-12-27 23:46:23 -08:00
|
|
|
, espresso
|
|
|
|
, tango
|
|
|
|
, kate
|
|
|
|
, monochrome
|
|
|
|
, haddock
|
|
|
|
, Style
|
2011-12-19 11:51:17 -08:00
|
|
|
) where
|
2008-07-31 06:35:46 +00:00
|
|
|
import Text.Pandoc.Definition
|
2011-12-26 22:49:50 -08:00
|
|
|
import Text.Highlighting.Kate
|
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-26 22:49:50 -08:00
|
|
|
lcLanguages :: [String]
|
|
|
|
lcLanguages = map (map toLower) languages
|
|
|
|
|
|
|
|
highlight :: (FormatOptions -> [SourceLine] -> a) -- ^ Formatter
|
|
|
|
-> Attr -- ^ Attributes of the CodeBlock
|
|
|
|
-> String -- ^ Raw contents of the CodeBlock
|
|
|
|
-> Maybe a -- ^ Maybe the formatted result
|
|
|
|
highlight formatter (_, classes, keyvals) rawCode =
|
2011-12-18 11:42:24 -08:00
|
|
|
let firstNum = case reads (fromMaybe "1" $ lookup "startFrom" keyvals) of
|
|
|
|
((n,_):_) -> n
|
|
|
|
[] -> 1
|
2011-12-26 22:49:50 -08:00
|
|
|
fmtOpts = defaultFormatOpts{
|
|
|
|
startNumber = firstNum,
|
|
|
|
numberLines = any (`elem`
|
|
|
|
["number","numberLines", "number-lines"]) classes }
|
|
|
|
lcclasses = map (map toLower) classes
|
|
|
|
in case find (`elem` lcLanguages) lcclasses of
|
2011-12-22 00:33:38 -08:00
|
|
|
Nothing -> Nothing
|
|
|
|
Just language -> Just
|
2011-12-28 22:04:38 -08:00
|
|
|
$ formatter fmtOpts{ codeClasses = [language],
|
|
|
|
containerClasses = classes }
|
2011-12-22 00:33:38 -08:00
|
|
|
$ highlightAs language rawCode
|
2008-02-09 03:21:19 +00:00
|
|
|
|