function tableofcontents_tips in Table of Contents 7.2
Implements hook_filter_FILTER_tips(). (sort of)
File
- ./
tableofcontents.module, line 65 - This is a filter module to generate a collapsible jquery enabled mediawiki style table of contents based on <h[1-6]> tags. Transforms header tags into named anchors.
Code
function tableofcontents_tips($filter, $format, $long) {
module_load_include('filter.inc', 'tableofcontents');
return _tableofcontents_tips($filter, $format, $long);
}