Enable HTML in Settings Output

Hi,

I'm using <?php echo settings('description'); ?> to display site info on my homepage and would like to add some HTML via the admin settings and have it be parsed on the homepage using the function above (or some other function) without hacking the core of Omeka. Does anyone know of a good way to achieve this?

Thanks -- Erin

nevermind, i just wrote this function and placed it in custom.php and it seems to work for my needs...

function theme_site_description()
{
$html = html_entity_decode(settings('description'));
return $html;
}