diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-10-21 13:09:13 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-10-21 13:10:42 -0700 |
commit | 3fa9a838c0b81e9487634cb82c78dda235452534 (patch) | |
tree | 7560410525bb95e1801e80ed959353c2f45616ee /src/Text/Pandoc | |
parent | 0ac43ab2a88dd156c6d39380edff4283e954119c (diff) | |
download | pandoc-3fa9a838c0b81e9487634cb82c78dda235452534.tar.gz |
Man reader: Support .so for include files.
Closes #4986.
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r-- | src/Text/Pandoc/Readers/Man.hs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Readers/Man.hs b/src/Text/Pandoc/Readers/Man.hs index a47181692..20f0eda97 100644 --- a/src/Text/Pandoc/Readers/Man.hs +++ b/src/Text/Pandoc/Readers/Man.hs @@ -2,6 +2,7 @@ {-# LANGUAGE GeneralizedNewtypeDeriving #-} {- Copyright (C) 2018 Yan Pashkovsky <yanp.bugz@gmail.com> + and John MacFarlane This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -37,6 +38,7 @@ module Text.Pandoc.Readers.Man (readMan) where import Prelude import Control.Monad (liftM, void, mzero, guard) import Control.Monad.Except (throwError) +import Text.Pandoc.Class (getResourcePath, readFileFromDirs) import Data.Char (isHexDigit, chr, ord) import Data.Default (Default) import Data.Maybe (catMaybes) @@ -278,10 +280,25 @@ lexMacro = do "\\#" -> return mempty "de" -> lexMacroDef args "sp" -> return $ singleTok MEmptyLine + "so" -> lexIncludeFile args _ -> resolveMacro macroName args where + lexIncludeFile :: PandocMonad m => [Arg] -> ManLexer m ManTokens + lexIncludeFile args = do + pos <- getPosition + case args of + (f:_) -> do + let fp = linePartsToString f + dirs <- getResourcePath + result <- readFileFromDirs dirs fp + case result of + Nothing -> report $ CouldNotLoadIncludeFile fp pos + Just s -> getInput >>= setInput . (s ++) + return mempty + [] -> return mempty + resolveMacro :: PandocMonad m => String -> [Arg] -> ManLexer m ManTokens resolveMacro macroName args = do |