You are here

function html_title_help in HTML Title 7

Implements hook_help().

File

./html_title.module, line 16
This module enables limited HTML to be used in node titles. It strips title markup from RSS feeds to eliminate unsightly markup in feed readers.

Code

function html_title_help($path, $arg) {
  switch ($path) {
    case 'admin/config/content/html_title':
      return '<p>' . t('Only the HTML tags below may be allowed in node titles. Any tags not enabled here will be removed. Note that all HTML will be removed in feed output and JSON output in views.') . '</p>';
      break;
  }
}