Got it using the helper function e (), which uses htmlentities () to format your tags, and that is converting your tag to <em>*</em> .
A quick and (very) dirty fix is ββto add this to your start.php or somewhere else before the first call to Helpers.php:
function e($value) { return $value; }
But this is far from ideal.
Antonio Carlos Ribeiro
source share