aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/Roff.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2018-10-28 10:46:45 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2018-10-28 10:46:45 -0700
commitfdce771a4e56c5763c449cf41fbee33b69a11541 (patch)
treedec9b60ccea038653fd411a02d5c9cea3668a431 /src/Text/Pandoc/Readers/Roff.hs
parentfe73707ab11a054aafad0ef6f1dc0ae54c4f67ad (diff)
downloadpandoc-fdce771a4e56c5763c449cf41fbee33b69a11541.tar.gz
Hlint changes.
Diffstat (limited to 'src/Text/Pandoc/Readers/Roff.hs')
-rw-r--r--src/Text/Pandoc/Readers/Roff.hs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Text/Pandoc/Readers/Roff.hs b/src/Text/Pandoc/Readers/Roff.hs
index 085dfafd8..11da37953 100644
--- a/src/Text/Pandoc/Readers/Roff.hs
+++ b/src/Text/Pandoc/Readers/Roff.hs
@@ -247,7 +247,7 @@ escape = do
-- \s-1 \s0
escFontSize :: PandocMonad m => RoffLexer m [LinePart]
escFontSize = do
- let sign = option "" $ ("-" <$ char '-' <|> "" <$ char '+')
+ let sign = option "" ("-" <$ char '-' <|> "" <$ char '+')
let toFontSize xs =
case safeRead xs of
Nothing -> mzero
@@ -420,10 +420,10 @@ tableFormatSpecLine =
tableColFormat :: PandocMonad m => RoffLexer m CellFormat
tableColFormat = do
pipePrefix' <- option False
- $ True <$ (try $ string "|" <* notFollowedBy spacetab)
+ $ True <$ try (string "|" <* notFollowedBy spacetab)
c <- oneOf ['a','A','c','C','l','L','n','N','r','R','s','S','^','_','-',
'=','|']
- suffixes <- many $ (try $ skipMany spacetab *> count 1 digit) <|>
+ suffixes <- many $ try (skipMany spacetab *> count 1 digit) <|>
(do x <- oneOf ['b','B','d','D','e','E','f','F','i','I','m','M',
'p','P','t','T','u','U','v','V','w','W','x','X', 'z','Z']
num <- case toLower x of
@@ -441,7 +441,7 @@ tableColFormat = do
, pipePrefix = pipePrefix'
, pipeSuffix = pipeSuffix'
, columnSuffixes = suffixes }
-
+
-- We don't fully handle the conditional. But we do
-- include everything under '.ie n', which occurs commonly
-- in man pages. We always skip the '.el' part.