blob: c0dec776c1a7a2664b52ca33d07c4567d3c0456c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
-- | Module exporting a pandoc arrow
--
module Text.Hakyll.Pandoc
( renderAction
, renderActionWith
) where
import Data.Maybe (fromMaybe)
import qualified Data.Map as M
import Control.Arrow (second, (>>>), arr, (&&&))
import Text.Pandoc
import Text.Hakyll.Internal.FileType
import Text.Hakyll.Page
import Text.Hakyll.HakyllMonad
import Text.Hakyll.HakyllAction
import Text.Hakyll.Context
-- | Get a render function for a given extension.
--
getRenderFunction :: HakyllAction FileType (String -> String)
getRenderFunction = createHakyllAction $ \fileType -> case fileType of
Html -> return id
Text -> return id
UnknownFileType -> return id
_ -> do parserState <- askHakyll pandocParserState
writerOptions <- askHakyll pandocWriterOptions
return $ writeHtmlString writerOptions
. readFunction fileType (readOptions parserState fileType)
where
readFunction ReStructuredText = readRST
readFunction LaTeX = readLaTeX
readFunction Markdown = readMarkdown
readFunction LiterateHaskellMarkdown = readMarkdown
readFunction t = error $ "Cannot render " ++ show t
readOptions options LiterateHaskellMarkdown = options
{ stateLiterateHaskell = True }
readOptions options _ = options
-- | An action that renders the list of page sections to a context using pandoc
--
renderAction :: HakyllAction [PageSection] Context
renderAction = (arr id &&& (getFileType' >>> getRenderFunction))
>>> renderActionWith
where
getFileType' = arr $ getFileType . fromMaybe "unknown" . lookup "path"
. map (\(x, y, _) -> (x, y)) . map unPageSection
-- | An action to render pages, offering just a little more flexibility
--
renderActionWith :: HakyllAction ([PageSection], String -> String) Context
renderActionWith = createHakyllAction $ \(sections, render') -> return $
Context $ M.fromList $ map (renderTriple render' . unPageSection) sections
where
renderTriple render' (k, v, r) = second (if r then render' else id) (k, v)
|