i am having trouble with escaping my views. say i use this code to render a menu list:
[PHP]
$listItems[] = "<a href='test'>test</a>";
$listItems[] = "<a href='other-test'>other test</a>";
echo $this->htmlList($listItems);
[/PHP]
it automatically escapes the output, so it renders this:
<ul><li><a href='test'>test</a></li><li><a href='other-test'>other test</a></li></ul>
instead of an unordered list of links.
how can i specify which tags are acceptable in a view?