diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-06-26 15:04:47 -0400 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-06-26 15:04:47 -0400 |
commit | b96edd8b9ab86d84a2e67515a87de13f660d5cb1 (patch) | |
tree | 71887759835d882bc59e80d47c77d7547617d207 /Zotlabs | |
parent | dac3138fd1aa5e60f68c6b0ef59cbbc550d22def (diff) | |
download | volse-hubzilla-b96edd8b9ab86d84a2e67515a87de13f660d5cb1.tar.gz volse-hubzilla-b96edd8b9ab86d84a2e67515a87de13f660d5cb1.tar.bz2 volse-hubzilla-b96edd8b9ab86d84a2e67515a87de13f660d5cb1.zip |
Added table of contents generator. Table is inserted wherever [toc] is encountered.
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Module/Wiki.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zotlabs/Module/Wiki.php b/Zotlabs/Module/Wiki.php index de5863d2e..a11960b51 100644 --- a/Zotlabs/Module/Wiki.php +++ b/Zotlabs/Module/Wiki.php @@ -198,6 +198,7 @@ class Wiki extends \Zotlabs\Web\Controller { $content = $_POST['content']; $resource_id = $_POST['resource_id']; require_once('library/markdown.php'); + $content = wiki_generate_toc($content); $html = purify_html(Markdown($content)); $w = wiki_get_wiki($resource_id); $wikiURL = argv(0).'/'.argv(1).'/'.$w['urlName']; |