Skip to content

Deprecation: unless tag

Bhavin Patel edited this page Dec 27, 2018 · 2 revisions

The unless tag is deprecated in favor of using if tag as shown below:

Old

<unless(x)>
  <span />
</unless>

New

<if(!x)>
  <span />
</if>

Clone this wiki locally