Safe Haskell | None |
---|---|
Language | Haskell2010 |
This module provides a declarative DSL in which the user can specify the different rules used to run the compilers.
The convention is to just list all items in the Rules
monad, routes and
compilation rules.
A typical usage example would be:
main = hakyll $ do match "posts/*" $ do route (setExtension "html") compile someCompiler match "css/*" $ do route idRoute compile compressCssCompiler
Synopsis
- data Rules a
- match :: Pattern -> Rules () -> Rules ()
- matchMetadata :: Pattern -> (Metadata -> Bool) -> Rules () -> Rules ()
- create :: [Identifier] -> Rules () -> Rules ()
- version :: String -> Rules () -> Rules ()
- compile :: (Binary a, Typeable a, Writable a) => Compiler (Item a) -> Rules ()
- route :: Routes -> Rules ()
- preprocess :: IO a -> Rules a
- data Dependency
- rulesExtraDependencies :: [Dependency] -> Rules a -> Rules a
Documentation
The monad used to compose rules
Instances
Monad Rules Source # | |
Functor Rules Source # | |
Applicative Rules Source # | |
MonadMetadata Rules Source # | |
Defined in Hakyll.Core.Rules.Internal getMetadata :: Identifier -> Rules Metadata Source # getMatches :: Pattern -> Rules [Identifier] Source # getAllMetadata :: Pattern -> Rules [(Identifier, Metadata)] Source # |
compile :: (Binary a, Typeable a, Writable a) => Compiler (Item a) -> Rules () Source #
Add a compilation rule to the rules.
This instructs all resources to be compiled using the given compiler.
route :: Routes -> Rules () Source #
Add a route.
This adds a route for all items matching the current pattern.
Advanced usage
preprocess :: IO a -> Rules a Source #
Execute an IO
action immediately while the rules are being evaluated.
This should be avoided if possible, but occasionally comes in useful.
data Dependency Source #
Instances
Show Dependency Source # | |
Defined in Hakyll.Core.Dependencies showsPrec :: Int -> Dependency -> ShowS # show :: Dependency -> String # showList :: [Dependency] -> ShowS # | |
Binary Dependency Source # | |
Defined in Hakyll.Core.Dependencies |
rulesExtraDependencies :: [Dependency] -> Rules a -> Rules a Source #
Advanced usage: add extra dependencies to compilers. Basically this is needed when you're doing unsafe tricky stuff in the rules monad, but you still want correct builds.
A useful utility for this purpose is makePatternDependency
.