diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-01-19 16:32:35 +0100 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-01-19 16:32:35 +0100 |
commit | b596d206057420e3e7fcb270df435e0861003040 (patch) | |
tree | a5a59be9c5280ff62803cafa32e9ffb5393691ee | |
parent | 46b1c3192514c9bc2279ce091370147f11da74cd (diff) | |
download | pandoc-b596d206057420e3e7fcb270df435e0861003040.tar.gz |
Some fixes to permit breezeDark style.
-rw-r--r-- | pandoc.hs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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. |