heist-1.1.1.0: An Haskell template system supporting both HTML5 and XML.
Safe HaskellSafe-Inferred
LanguageHaskell2010

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.