diff options
author | Sebastian Schwarz <seschwar@googlemail.com> | 2010-01-18 18:00:39 +0100 |
---|---|---|
committer | Sebastian Schwarz <seschwar@googlemail.com> | 2010-01-18 18:00:39 +0100 |
commit | e01531bd7593b871d8fb18c5ea509394eb8785ba (patch) | |
tree | bf4907fa24bc7cbf91eabbbeebc7bfd80aac6c27 | |
parent | 47fae0ed2a075d6e685963c1ce411fe28d1fcfd5 (diff) | |
download | hakyll-e01531bd7593b871d8fb18c5ea509394eb8785ba.tar.gz |
Added reStructuredText support.
Why not? Quickly tested. Seems to work fine.
-rw-r--r-- | src/Text/Hakyll/File.hs | 1 | ||||
-rw-r--r-- | src/Text/Hakyll/Page.hs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/Text/Hakyll/File.hs b/src/Text/Hakyll/File.hs index 2378ae9..81c4170 100644 --- a/src/Text/Hakyll/File.hs +++ b/src/Text/Hakyll/File.hs @@ -46,6 +46,7 @@ toURL path = if takeExtension path `elem` [ ".markdown" , ".mkd" , ".mkdn" , ".mkdwn" + , ".rst" , ".text" , ".tex" ] diff --git a/src/Text/Hakyll/Page.hs b/src/Text/Hakyll/Page.hs index d338542..e807442 100644 --- a/src/Text/Hakyll/Page.hs +++ b/src/Text/Hakyll/Page.hs @@ -60,6 +60,7 @@ renderFunction ".html" = id renderFunction ext = writeHtmlString writerOptions . readFunction ext defaultParserState where + readFunction ".rst" = readRST readFunction ".tex" = readLaTeX readFunction _ = readMarkdown |