Safe Haskell | None |
---|---|
Language | Haskell2010 |
Documentation
Smarty | |
|
type PrintDirective = Text Source #
data SmartyStmt Source #
SmartyText Text | |
SmartyComment Text | |
SmartyIf If | |
SmartyForeach Foreach | |
SmartyCapture Capture | |
SmartyLet Let | |
SmartyPrint Expr [PrintDirective] | |
SmartyScope Scope | |
SmartyFun FunctionDef |
Instances
Eq SmartyStmt Source # | |
Defined in Text.HSmarty.Types (==) :: SmartyStmt -> SmartyStmt -> Bool # (/=) :: SmartyStmt -> SmartyStmt -> Bool # | |
Show SmartyStmt Source # | |
Defined in Text.HSmarty.Types showsPrec :: Int -> SmartyStmt -> ShowS # show :: SmartyStmt -> String # showList :: [SmartyStmt] -> ShowS # |
data FunctionCall Source #
Instances
Eq FunctionCall Source # | |
Defined in Text.HSmarty.Types (==) :: FunctionCall -> FunctionCall -> Bool # (/=) :: FunctionCall -> FunctionCall -> Bool # | |
Show FunctionCall Source # | |
Defined in Text.HSmarty.Types showsPrec :: Int -> FunctionCall -> ShowS # show :: FunctionCall -> String # showList :: [FunctionCall] -> ShowS # |
Scope | |
|
data FunctionDef Source #
FunctionDef | |
|
Instances
Eq FunctionDef Source # | |
Defined in Text.HSmarty.Types (==) :: FunctionDef -> FunctionDef -> Bool # (/=) :: FunctionDef -> FunctionDef -> Bool # | |
Show FunctionDef Source # | |
Defined in Text.HSmarty.Types showsPrec :: Int -> FunctionDef -> ShowS # show :: FunctionDef -> String # showList :: [FunctionDef] -> ShowS # |
If | |
|