summaryrefslogtreecommitdiff
path: root/pandoc.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-01-19 16:32:35 +0100
committerJohn MacFarlane <jgm@berkeley.edu>2017-01-19 16:32:35 +0100
commitb596d206057420e3e7fcb270df435e0861003040 (patch)
treea5a59be9c5280ff62803cafa32e9ffb5393691ee /pandoc.hs
parent46b1c3192514c9bc2279ce091370147f11da74cd (diff)
Some fixes to permit breezeDark style.
Diffstat (limited to 'pandoc.hs')
-rw-r--r--pandoc.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/pandoc.hs b/pandoc.hs
index 7cf8258f8..a032922be 100644
--- a/pandoc.hs
+++ b/pandoc.hs
@@ -43,7 +43,7 @@ import Text.Pandoc.XML ( toEntities )
import Text.Pandoc.SelfContained ( makeSelfContained )
import Text.Pandoc.Process (pipeProcess)
import Skylighting ( defaultSyntaxMap, Syntax(..), Style, tango, pygments,
- espresso, zenburn, kate, haddock, monochrome )
+ espresso, zenburn, kate, haddock, breezeDark, monochrome )
import System.Environment ( getArgs, getProgName, getEnvironment )
import System.Exit ( ExitCode (..), exitSuccess )
import System.FilePath
@@ -156,7 +156,7 @@ highlightingStyles =
("zenburn", zenburn),
("kate", kate),
("monochrome", monochrome),
- ("breezeDark", breezeDark),
+ ("breezedark", breezeDark),
("haddock", haddock)]
-- | Data structure for command line options.