summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MANUAL.txt9
-rw-r--r--src/Text/Pandoc/App.hs25
2 files changed, 18 insertions, 16 deletions
diff --git a/MANUAL.txt b/MANUAL.txt
index c7aa299c4..ae518054d 100644
--- a/MANUAL.txt
+++ b/MANUAL.txt
@@ -593,11 +593,12 @@ General writer options
: Print a system default data file. Files in the user data directory
are ignored.
-`--eol=crlf`|`lf`
+`--eol=crlf`|`lf`|`native`
-: Manually specify line endings: `crlf` (Windows) or `lf`
- (MacOS/linux/unix). The default is to use the line endings
- appropriate for the OS.
+: Manually specify line endings: `crlf` (Windows), `lf`
+ (MacOS/linux/unix), or `native` (line endings appropriate
+ to the OS on which pandoc is being run). The default is
+ `native`.
`--dpi`=*NUMBER*
diff --git a/src/Text/Pandoc/App.hs b/src/Text/Pandoc/App.hs
index eee72fd3c..97954764a 100644
--- a/src/Text/Pandoc/App.hs
+++ b/src/Text/Pandoc/App.hs
@@ -90,11 +90,11 @@ import System.Posix.IO (stdOutput)
import System.Posix.Terminal (queryTerminal)
#endif
-data Newline = LF | CRLF deriving (Show, Generic)
+data LineEnding = LF | CRLF | Native deriving (Show, Generic)
-instance ToJSON Newline where
+instance ToJSON LineEnding where
toEncoding = genericToEncoding defaultOptions
-instance FromJSON Newline
+instance FromJSON LineEnding
parseOptions :: [OptDescr (Opt -> IO Opt)] -> Opt -> IO Opt
parseOptions options' defaults = do
@@ -422,9 +422,9 @@ convertWithOpts opts = do
else return $ optMetadata opts
let eol = case optEol opts of
- Just CRLF -> IO.CRLF
- Just LF -> IO.LF
- Nothing -> nativeNewline
+ CRLF -> IO.CRLF
+ LF -> IO.LF
+ Native -> nativeNewline
runIO' $ do
setResourcePath (optResourcePath opts)
@@ -584,7 +584,7 @@ data Opt = Opt
, optIncludeAfterBody :: [FilePath] -- ^ Files to include after body
, optIncludeInHeader :: [FilePath] -- ^ Files to include in header
, optResourcePath :: [FilePath] -- ^ Path to search for images etc
- , optEol :: Maybe Newline -- ^ Enforce line-endings
+ , optEol :: LineEnding -- ^ Style of line-endings to use
} deriving (Generic, Show)
instance ToJSON Opt where
@@ -658,7 +658,7 @@ defaultOpts = Opt
, optIncludeAfterBody = []
, optIncludeInHeader = []
, optResourcePath = ["."]
- , optEol = Nothing
+ , optEol = Native
}
addMetadata :: (String, String) -> Pandoc -> Pandoc
@@ -986,12 +986,13 @@ options =
(ReqArg
(\arg opt ->
case toLower <$> arg of
- "crlf" -> return opt { optEol = Just CRLF }
- "lf" -> return opt { optEol = Just LF }
+ "crlf" -> return opt { optEol = CRLF }
+ "lf" -> return opt { optEol = LF }
+ "native" -> return opt { optEol = Native }
-- mac-syntax (cr) is not supported in ghc-base.
_ -> E.throwIO $ PandocOptionError
- "--eol must be one of crlf (Windows), lf (Unix)")
- "crlf|lf")
+ "--eol must be crlf, lf, or native")
+ "crlf|lf|native")
"" -- "EOL (default OS-dependent)"
, Option "" ["wrap"]