We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The <unless> tag is deprecated in favor of inverting the expression inside the <if> tag.
<unless>
<if>
<unless(x)> x is falsy! </unless>
…becomes <if> with the unary negation operator (!):
!
<if(!x)> x is falsy! </if>