diff options
author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2012-02-17 07:29:34 -0800 |
---|---|---|
committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2012-02-17 07:29:34 -0800 |
commit | 2416c76faa0dadb330c74dc0f3ddefdf4f889659 (patch) | |
tree | 2fe71fbf77224e37c2d1040f642fa34711b45af7 | |
parent | ff8bb310a420cc3c59064ba8481f672d131ad3b6 (diff) | |
parent | 80f385c36110d90bab5e0cf085d557d546911eb6 (diff) | |
download | hakyll-2416c76faa0dadb330c74dc0f3ddefdf4f889659.tar.gz |
Merge pull request #57 from Athas/master
Documentation update
-rw-r--r-- | src/Hakyll/Core/Rules.hs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Hakyll/Core/Rules.hs b/src/Hakyll/Core/Rules.hs index 2e3e52c..bef480a 100644 --- a/src/Hakyll/Core/Rules.hs +++ b/src/Hakyll/Core/Rules.hs @@ -140,7 +140,9 @@ compile compiler = do -- This sets a compiler for the given identifier. No resource is needed, since -- we are creating the item from scratch. This is useful if you want to create a -- page on your site that just takes content from other items -- but has no --- actual content itself. +-- actual content itself. Note that the group of the given identifier is +-- replaced by the group set via 'group' (or 'Nothing', if 'group' has not been +-- used). -- create :: (Binary a, Typeable a, Writable a) => Identifier a -> Compiler () a -> RulesM (Identifier a) |