diff options
author | Alexey Kreshchuk <akrsch@gmail.com> | 2014-01-22 00:11:51 +0400 |
---|---|---|
committer | Alexey Kreshchuk <akrsch@gmail.com> | 2014-01-22 00:11:51 +0400 |
commit | dbabe0325b9d7bca3b14c2b33e686b8151fa79aa (patch) | |
tree | 797c4edad131143455f86f7d0226a7a040b1c02e /src/Hakyll/Core/Rules/Default.hs | |
parent | d406db44e39d310a72ca6bb014ed882f0e883995 (diff) | |
download | hakyll-dbabe0325b9d7bca3b14c2b33e686b8151fa79aa.tar.gz |
Unified code for global and external metadata
Didn't clean up unused code though
Diffstat (limited to 'src/Hakyll/Core/Rules/Default.hs')
-rw-r--r-- | src/Hakyll/Core/Rules/Default.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Hakyll/Core/Rules/Default.hs b/src/Hakyll/Core/Rules/Default.hs index ccca1bd..fee78c5 100644 --- a/src/Hakyll/Core/Rules/Default.hs +++ b/src/Hakyll/Core/Rules/Default.hs @@ -14,6 +14,7 @@ internalRules :: Rules () internalRules = do match "metadata" $ compile $ makeItem () match "**/metadata" $ compile $ makeItem () + match "**.metadata" $ compile $ makeItem () -------------------------------------------------------------------------------- addMetadataDependencies :: Compiler () |