heist-1.0.1.3: An Haskell template system supporting both HTML5 and XML.

Safe HaskellNone
LanguageHaskell98

Heist.Splices

Synopsis

Documentation

ifISplice :: Monad m => Bool -> Splice m Source #

Run the splice contents if given condition is True, make splice disappear if not.

ifCSplice :: Monad m => (t -> Bool) -> RuntimeSplice m t -> Splice m Source #

Function for constructing if splices that use a runtime predicate function to determine whether the node's children should be rendered.

ifElseISplice :: Monad m => Bool -> Splice m Source #

Implements an if/then/else conditional splice. It splits its children around the <else/> element to get the markup to be used for the two cases.

ifElseCSplice :: Monad m => Bool -> Splice m Source #

Implements an if/then/else conditional splice. It splits its children around the <else/> element to get the markup to be used for the two cases.