diff options
author | Jasper Van der Jeugt <m@jaspervdj.be> | 2013-01-13 15:51:22 +0100 |
---|---|---|
committer | Jasper Van der Jeugt <m@jaspervdj.be> | 2013-01-13 15:51:22 +0100 |
commit | 34e6ad423136cd14328778b01751163b79edf2b9 (patch) | |
tree | 20c350175a0bb5fb2b4faee9c750c62ea46dc579 /web/tutorials/06-versions.markdown | |
parent | f2905021ec094ee794017586581c175ee98e7bb2 (diff) | |
download | hakyll-34e6ad423136cd14328778b01751163b79edf2b9.tar.gz |
Add tutorial on versions
Diffstat (limited to 'web/tutorials/06-versions.markdown')
-rw-r--r-- | web/tutorials/06-versions.markdown | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/web/tutorials/06-versions.markdown b/web/tutorials/06-versions.markdown new file mode 100644 index 0000000..4b14925 --- /dev/null +++ b/web/tutorials/06-versions.markdown @@ -0,0 +1,67 @@ +--- +title: Producing multiple versions of a single file +author: Jasper Van der Jeugt +--- + +Basics +------ + +Suppose that you want to make your writings available in raw markdown format, in +addition to the HTML available on your website. Is this possible using Hakyll? + +In the [previous tutorial], we explained how you can use snapshots to store an +item while it's being processed. However, this does not allow you to route it to +a different location. + +[previous tutorial]: /tutorials/05-snapshots-feeds.html + +Instead, we must use `version` in order to do this. The type signature of +`version` does not reveal much: + +```haskell +version :: String -> Rules () -> Rules () +``` + +So let's look at an example: + +```haskell +match "posts/*" $ do + route $ setExtension "html" + compile $ pandocCompiler + >>= loadAndApplyTemplate "templates/post.html" postCtx + >>= loadAndApplyTemplate "templates/default.html" postCtx + >>= relativizeUrls + +match "posts/*" $ version "raw" $ do + route idRoute + compile getResourceBody +``` + +Here, you can see how we produce two versions of each item in `posts/*`: one +`"raw"` version, and the default version. + +Attention: patterns and versions +-------------------------------- + +However, there is one important thing to note: suppose you use `Pattern`s for a +function such as `loadAll`, e.g. to create an index page with all blogposts. + +```haskell +loadAll "posts/*" :: Compiler [Item String] +``` + +is valid code, but **probably not** what you want to do: this will select all +`posts/*` items, meaning, both your HTML posts, and the raw versions. In order +to fix this, use any of the following: + +```haskell +loadAll (noVersion "posts/*") :: Compiler [Item String] +``` + +for the default versions, i.e. the HTML pages, and: + +```haskell +loadAll ("posts/*" `withVersion` "raw") :: Compiler [Item String] +``` + +for the raw versions. |