Parameter | Description | Default |
---|---|---|
"condition" |
Condition to test | |
then |
String to expand if the condition evaluates to true | |
else |
String to expand if the condition evaluates to false |
%IF{"CONDITION" then="THEN" else="ELSE"}%
shows"THEN"
if "CONDITION"
evaluates to TRUE
, otherwise "ELSE"
will be shown
%IF{"defined FUNFACTOR"renders as
then="FUNFACTOR is defined"
else="FUNFACTOR is not defined"
}%
FUNFACTOR is not defined