From b596d206057420e3e7fcb270df435e0861003040 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Thu, 19 Jan 2017 16:32:35 +0100 Subject: [PATCH] Some fixes to permit breezeDark style. --- pandoc.hs | 4 ++-- 1 file 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.