From 46b1c3192514c9bc2279ce091370147f11da74cd Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Thu, 19 Jan 2017 15:59:57 +0100 Subject: [PATCH] Add breezeDark to the list of highlighting styles. --- MANUAL.txt | 7 ++++--- pandoc.hs | 1 + 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/MANUAL.txt b/MANUAL.txt index 748d0f533..6070d069e 100644 --- a/MANUAL.txt +++ b/MANUAL.txt @@ -602,9 +602,10 @@ General writer options : Specifies the coloring style to be used in highlighted source code. Options are `pygments` (the default), `kate`, `monochrome`, - `espresso`, `zenburn`, `haddock`, and `tango`. For more information - on syntax highlighting in pandoc, see [Syntax highlighting], below. - See also `--list-highlight-styles`. + `breezeDark`, `espresso`, `zenburn`, `haddock`, and `tango`. + For more information on syntax highlighting in pandoc, see + [Syntax highlighting], below. See also + `--list-highlight-styles`. `-H` *FILE*, `--include-in-header=`*FILE* diff --git a/pandoc.hs b/pandoc.hs index 5980c217c..7cf8258f8 100644 --- a/pandoc.hs +++ b/pandoc.hs @@ -156,6 +156,7 @@ highlightingStyles = ("zenburn", zenburn), ("kate", kate), ("monochrome", monochrome), + ("breezeDark", breezeDark), ("haddock", haddock)] -- | Data structure for command line options.