- Code: Select all
<!-- DEFINE $BLAH = '<a href="blah">blah</a>' -->
is compiled into this:
- Code: Select all
$this->_tpldata['DEFINE']['.']['BLAH'] = '<a href=\"blah\">blah</a>';
with double quotes escaped, so when I use {$BLAH} in template html output is this:
- Code: Select all
<a href=\"blah\">blah</a>