Condition
Can use the "if" command for conditional judgment.
define conditional variables
{
"variable1": "hello",
"variable2": "world",
"is_show": true,
"is_show2": false
}use conditional judgment
<!--{if-is_show}-->
# variable
<!--{v-variable1}--><!--{ifn-is_show2}--> : <!--{v-variable2}--><!--{end}-->
<!--{end}-->compiler results
# variable
hello : worldLast updated