summaryrefslogtreecommitdiff
path: root/doc/plugins/toggle
diff options
context:
space:
mode:
authorPaulePanter <PaulePanter@web>2009-05-12 10:13:07 -0400
committerJoey Hess <joey@kitenet.net>2009-05-12 10:13:07 -0400
commit72e074d8958e36b4859f28f0996bed42c71d9cb0 (patch)
tree42d9c2b4fe236083969e7560f8230a0faace9022 /doc/plugins/toggle
parent513502b3b18699e3ffac7950e619119d5e169a33 (diff)
question or bug regarding toggle and list item
Diffstat (limited to 'doc/plugins/toggle')
-rw-r--r--doc/plugins/toggle/discussion.mdwn26
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/plugins/toggle/discussion.mdwn b/doc/plugins/toggle/discussion.mdwn
index 5426a62fc..ac22e7eb6 100644
--- a/doc/plugins/toggle/discussion.mdwn
+++ b/doc/plugins/toggle/discussion.mdwn
@@ -15,3 +15,29 @@ but no success. How can I do it?
## [[bugs/Bug_when_toggling_in_a_preview_page]]
+
+----
+
+## Using toggle directives in a list item##
+Take this code snippet.
+
+ * [[!toggle id="test" text="test"]]
+ [[!toggleable id="test text="""toggle"""]]
+
+In the HTML-output the `ul` and `div` overlap.
+
+ <div id="content">
+ <ul>
+ <li><a class="toggle" href="#test.test">test</a>
+ <div class="toggleable" id="test.-test"></li>
+ </ul>
+
+ <p>toggle</p>
+
+ </div>
+
+ </div>
+
+Fixing this manually the Javascript seems not to be working and `toggle` is shown unconditionally.
+
+I do not know if this is due to [[shortcomming with nested preprocessor directives|todo/nested_preprocessor_directives]] you mentioned in the beginning of this page. Maybe a note could be added to the main page of the plugin. --Paul