Replace homemade table of content generator with existing jQuery plugin. Now toc is linked to document headings.

This commit is contained in:
Andrew Manning
2016-06-30 21:50:38 -04:00
parent 81da9f99e4
commit 7124c0aee5
3 changed files with 6 additions and 5 deletions

View File

@@ -498,7 +498,8 @@ function wiki_convert_links($s, $wikiURL) {
function wiki_generate_toc($s) {
if (strpos($s,'[toc]') !== false) {
$toc_md = wiki_toc($s);
//$toc_md = wiki_toc($s); // Generate Markdown-formatted list prior to HTML render
$toc_md = '<ul id="wiki-toc"></ul>'; // use the available jQuery plugin http://ndabas.github.io/toc/
$s = preg_replace("/\[toc\]/", $toc_md, $s, -1);
}
return $s;