summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Writers/Man.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Text/Pandoc/Writers/Man.hs')
-rw-r--r--src/Text/Pandoc/Writers/Man.hs17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/Text/Pandoc/Writers/Man.hs b/src/Text/Pandoc/Writers/Man.hs
index f0cc3c707..318fb056a 100644
--- a/src/Text/Pandoc/Writers/Man.hs
+++ b/src/Text/Pandoc/Writers/Man.hs
@@ -69,15 +69,16 @@ metaToMan :: WriterOptions -- ^ Options, including Man header
-> Meta -- ^ Meta with bibliographic information
-> State WriterState (Doc, Doc)
metaToMan options (Meta title authors date) = do
- titleParts <- mapM (inlineListToMan options) $ map normalizeSpaces $
- splitBy (Str "|") title
- let titleParts' = map doubleQuotes titleParts
- let (title', section, rest) = case titleParts' of
- [] -> (text "\"\"", text "\"\"", [])
- [x] -> (x, text "\"\"", [])
- (x:y:zs) -> (x, y, zs)
+ titleText <- inlineListToMan options title
+ let (cmdName, rest) = break (== ' ') $ render titleText
+ let (title', section) = case reverse cmdName of
+ (')':d:'(':xs) | d `elem` ['0'..'9'] ->
+ (text (reverse xs), text [d])
+ xs -> (text (reverse xs), empty)
+ let extras = map (doubleQuotes . text . removeLeadingTrailingSpace) $
+ splitBy '|' rest
let head = (text ".TH") <+> title' <+> section <+>
- doubleQuotes (text date) <+> hsep rest
+ doubleQuotes (text date) <+> hsep extras
let foot = case length authors of
0 -> text $ ""
1 -> text $ ".SH AUTHOR\n" ++ joinWithSep ", " authors