aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/toc_in_sidebar.mdwn
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-06-28 22:46:12 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-06-28 22:46:12 -0400
commitf8fe1247bdc13533673f217e6c77361a1188d7eb (patch)
treef7aea55fcd19e5394e3097148e5e4d2c120ee145 /doc/bugs/toc_in_sidebar.mdwn
parent9c41769673544dee1fd2a822b17b3df3aa6c90e8 (diff)
downloadikiwiki-f8fe1247bdc13533673f217e6c77361a1188d7eb.tar
ikiwiki-f8fe1247bdc13533673f217e6c77361a1188d7eb.tar.gz
bug
Diffstat (limited to 'doc/bugs/toc_in_sidebar.mdwn')
-rw-r--r--doc/bugs/toc_in_sidebar.mdwn16
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/bugs/toc_in_sidebar.mdwn b/doc/bugs/toc_in_sidebar.mdwn
new file mode 100644
index 000000000..9286790b8
--- /dev/null
+++ b/doc/bugs/toc_in_sidebar.mdwn
@@ -0,0 +1,16 @@
+Putting a [[plugin/toc]] in the sidebar used to work, but was broken by
+commit 9652cdfe2eb16150518e34af33c8858118fe0a09, which, in turn fixed a bug
+with the toc not appearing during page preview.
+
+So, if toc is a sanitize hook, it can't be used in the sidebar, because the
+sidebar is only added to the page later. If the toc is a format hook, it
+shows up in the sidebar, but not at page preview time (because format hooks
+are not called during preview). Also, calling the toc as a format hook
+makes any headers that are hardcoded into the page template show up in the
+toc, which is rarely desirable.
+
+I can't think of a way between these that works in all cases. Maybe call
+the format hooks when generating a page preview? Maybe add an option to toc
+to make it embeddable in the sidebar?
+
+--[[Joey]]