Parse bbcode when page loads

This commit is contained in:
Andrew Manning
2016-08-04 19:45:35 -04:00
parent 05a9f0aa14
commit 6a82ff871f
2 changed files with 8 additions and 2 deletions

View File

@@ -495,6 +495,12 @@ function wiki_convert_links($s, $wikiURL) {
return $s;
}
/**
* Replace the instances of the string [toc] with a list element that will be populated by
* a table of contents by the JavaScript library
* @param string $s
* @return string
*/
function wiki_generate_toc($s) {
if (strpos($s,'[toc]') !== false) {