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>&lt;a href='test'&gt;test&lt;/a&gt;</li><li>&lt;a href='other-test'&gt;other test&lt;/a&gt;</li></ul>

instead of an unordered list of links.

how can i specify which tags are acceptable in a view?