aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/App/Opt.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2019-10-09 21:54:41 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2019-10-09 21:54:41 -0700
commitff1df241a9fcacec8c897cc0f01f691ee5b49a22 (patch)
tree8a05a7073b5f30bc6d05a8d1392bf266e7c5821d /src/Text/Pandoc/App/Opt.hs
parent070e098b48bfed41b703eec7c62c91c82ad66d26 (diff)
downloadpandoc-ff1df241a9fcacec8c897cc0f01f691ee5b49a22.tar.gz
T.P.App.Opt: rename optReader, optWriter as optFrom, optTo.
This will allow to: and from: in defaults.
Diffstat (limited to 'src/Text/Pandoc/App/Opt.hs')
-rw-r--r--src/Text/Pandoc/App/Opt.hs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Text/Pandoc/App/Opt.hs b/src/Text/Pandoc/App/Opt.hs
index 09086659d..c491d8ae2 100644
--- a/src/Text/Pandoc/App/Opt.hs
+++ b/src/Text/Pandoc/App/Opt.hs
@@ -45,8 +45,8 @@ data Opt = Opt
{ optTabStop :: Int -- ^ Number of spaces per tab
, optPreserveTabs :: Bool -- ^ Preserve tabs instead of converting to spaces
, optStandalone :: Bool -- ^ Include header, footer
- , optReader :: Maybe String -- ^ Reader format
- , optWriter :: Maybe String -- ^ Writer format
+ , optFrom :: Maybe String -- ^ Reader format
+ , optTo :: Maybe String -- ^ Writer format
, optTableOfContents :: Bool -- ^ Include table of contents
, optShiftHeadingLevelBy :: Int -- ^ Shift heading level by
, optTemplate :: Maybe FilePath -- ^ Custom template
@@ -119,8 +119,8 @@ defaultOpts = Opt
{ optTabStop = 4
, optPreserveTabs = False
, optStandalone = False
- , optReader = Nothing
- , optWriter = Nothing
+ , optFrom = Nothing
+ , optTo = Nothing
, optTableOfContents = False
, optShiftHeadingLevelBy = 0
, optTemplate = Nothing