How to enable HTML option for Drupal menus?

/*
*Enabling HTML option for Drupal menus
*/
function theme_menu_item_link($link) {
$link['localized_options']['html'] = true;
return l($link['title'], $link['href'], $link['localized_options']);
}

Share Your Answers

The content of this field is kept private and will not be shown publicly.
CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.