diff options
author | Jesse Rosenthal <jrosenthal@jhu.edu> | 2014-06-25 13:50:08 -0400 |
---|---|---|
committer | Jesse Rosenthal <jrosenthal@jhu.edu> | 2014-06-25 13:50:08 -0400 |
commit | 3ec62d006483d369bb896b283db82e4437b66d05 (patch) | |
tree | 66bdb19e4d517955781daf39784e8bbf42e37389 | |
parent | a2b6ab847cb1c997c6ae7b8ed36f543a7ed90ecd (diff) | |
download | pandoc-3ec62d006483d369bb896b283db82e4437b66d05.tar.gz |
Add TrackChanges type to options.
-rw-r--r-- | src/Text/Pandoc/Options.hs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Options.hs b/src/Text/Pandoc/Options.hs index 611a6bb06..e0ad866ad 100644 --- a/src/Text/Pandoc/Options.hs +++ b/src/Text/Pandoc/Options.hs @@ -264,6 +264,12 @@ data HTMLSlideVariant = S5Slides | NoSlides deriving (Show, Read, Eq) +-- | Options for accepting or rejecting MS Word track-changes. +data TrackChanges = AcceptChanges + | RejectChanges + | AllChanges + deriving (Show, Read, Eq) + -- | Options for writers data WriterOptions = WriterOptions { writerStandalone :: Bool -- ^ Include header and footer |