diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | src/Text/Hakyll/File.hs | 12 | ||||
-rw-r--r-- | src/Text/Hakyll/Page.hs | 9 |
3 files changed, 17 insertions, 6 deletions
@@ -9,7 +9,9 @@ *.swp *~ .DS_Store +TAGS dist +tags # Ignore test builds. tests/Tests diff --git a/src/Text/Hakyll/File.hs b/src/Text/Hakyll/File.hs index 393c4a8..2a77707 100644 --- a/src/Text/Hakyll/File.hs +++ b/src/Text/Hakyll/File.hs @@ -42,7 +42,17 @@ toCache path = "_cache" </> (removeLeadingSeparator path) -- | Get the url for a given page. toURL :: FilePath -> FilePath -toURL path = if takeExtension path `elem` [".markdown", ".md", ".tex"] +toURL path = if takeExtension path `elem` [ ".markdown" + , ".md" + , ".mdn" + , ".mdwn" + , ".mkd" + , ".mkdn" + , ".mkdwn" + , ".rst" + , ".text" + , ".tex" + ] then flip addExtension ".html" $ dropExtension path else path diff --git a/src/Text/Hakyll/Page.hs b/src/Text/Hakyll/Page.hs index bd15ad1..bae7fa6 100644 --- a/src/Text/Hakyll/Page.hs +++ b/src/Text/Hakyll/Page.hs @@ -61,10 +61,9 @@ renderFunction ".html" = id renderFunction ext = writeHtmlString writerOptions . readFunction ext defaultParserState where - readFunction ".markdown" = readMarkdown - readFunction ".md" = readMarkdown - readFunction ".tex" = readLaTeX - readFunction _ = readMarkdown + readFunction ".rst" = readRST + readFunction ".tex" = readLaTeX + readFunction _ = readMarkdown -- | Read metadata header from a file handle. readMetaData :: Handle -> Hakyll [(String, String)] @@ -134,7 +133,7 @@ readPage pagePath = do , ("path", pagePath) ] ++ metaData - seq (($|) id rdeepseq rendered) $ liftIO $ hClose handle + seq (($|) id rdeepseq rendered) $ hClose handle -- Cache if needed if getFromCache then return () else cachePage page |