links in output html are not updated automatically via Hakyll’s pandoc compiler with modified route.
For this reason, it is necessary to manually rewrite the link in markdown.
withUrls
is a function in Hakyll can apply String->String
convert in each URLs.
so it can be used to create a specific parser.
below is usage example.
parseInnerLinks
: applyparseInnerLink
each URLs bywithUrls
.parseInnerLink
: applyparsePostLink
only URL has prefix/posts
parseInnerLinks :: Item String -> Compiler (Item String)
= pure . fmap (withUrls parseInnerLink)
parseInnerLinks
parseInnerLink :: String -> String
parseInnerLink url| isExternal url = url
| "/posts" `L.isPrefixOf` url =
parsePostLink url| otherwise =
url
parsePostLink
: it convert URL which include#
(section link). convert URL before#
and re-concat URL after#
.convPostUrl
: applyString->String
convert in same as usedRoute
delete/
which head of URL bytail
to getFilepath
.
parsePostLink :: String -> String
= case map T.unpack . T.splitOn "#" $ T.pack url of
parsePostLink url -> addHtml . convPostUrl $ base
[base] -> (++ section) . (++ "#") . addHtml . convPostUrl $ base
[base, section]
convPostUrl :: String -> String
= (++) "/" . getLangPath . fromFilePath $ tail url
convPostUrl url
addHtml :: String -> String
= (++ ".html") addHtml
below is example of usage parseInnerLinks
.
pandocCompiler>>= loadAndApplyTemplate "templates/post.html" postCtx
>>= loadAndApplyTemplate "templates/default.html" postCtx
>>= parseInnerLinks
>>= relativizeUrls