I would like to add an attribute to some form elements in the action controller, I can do it like this:
$form->element_name->setAttrib('description', '<a href="/controller/action">Anchor</a>');
However in the above example the second argument gets escaped. I would like to have it unescaped. How can I do that?