%META:TOPICINFO{author="ProjectContributor" date="1655468868" format="1.1" version="1"}%
%META:TOPICPARENT{name="Macros"}%
---+ IF -- simple conditionals
Evaluate a condition and show one text or another based on the result. See details in [[IfStatements]].
   | *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 | |
---++ Examples
   * =%<nop>IF{"CONDITION" then="THEN" else="ELSE"}%= shows<br/> ="THEN"= if ="CONDITION"= evaluates to =TRUE=, otherwise ="ELSE"= will be shown
<verbatim class="tml"> %IF{"defined FUNFACTOR"
   then="FUNFACTOR is defined"
   else="FUNFACTOR is not defined"
 }%</verbatim> renders as <pre class="tml">%IF{"defined FUNFACTOR" then="FUNFACTOR is defined" else="FUNFACTOR is not defined"}%</pre>

%STOPINCLUDE%
---++ Related
IfStatements
