diff options
author | Jasper Van der Jeugt <m@jaspervdj.be> | 2013-02-24 10:57:18 +0100 |
---|---|---|
committer | Jasper Van der Jeugt <m@jaspervdj.be> | 2013-02-24 10:57:18 +0100 |
commit | 5ec7f26b2995b45e17cf8e9a459004d8a7044e1b (patch) | |
tree | fcf9645ec34e6ce72352f2956d9e901d85a83295 | |
parent | b91c8be54b14a84aa47b5033a9966653df7f84ca (diff) | |
download | hakyll-5ec7f26b2995b45e17cf8e9a459004d8a7044e1b.tar.gz |
Use smart typography for tutorials
-rw-r--r-- | web/site.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/site.hs b/web/site.hs index 8817d8c..a1c2a49 100644 --- a/web/site.hs +++ b/web/site.hs @@ -44,7 +44,7 @@ main = hakyllWith config $ do -- Tutorials match "tutorials/*" $ do route $ setExtension "html" - compile $ pandocCompilerWith def withToc + compile $ pandocCompilerWith defaultHakyllReaderOptions withToc >>= loadAndApplyTemplate "templates/tutorial.html" defaultContext >>= loadAndApplyTemplate "templates/default.html" defaultContext >>= relativizeUrls |