]> sipb.mit.edu Git - ikiwiki.git/blobdiff - doc/plugins/toggle/discussion.mdwn
Pull request
[ikiwiki.git] / doc / plugins / toggle / discussion.mdwn
index a85f2ec1cd8aa2c41f8e722a86e803c2493bd078..e48eef5ba9876d4f4097bae930cac982942ee364 100644 (file)
@@ -1,7 +1,7 @@
-# Nested plugins
+## Nested plugins
 
 Is it possible to use another plugin into your toggle plugin? For example,
-I want to have toggleable table and try to use Victor Moral's table plugin,
+I want to have toggleable table and try to use [[Victor Moral|users/victormoral]]'s [[table plugin|plugins/table]],
 but no success. How can I do it?
 --PTecza
 
@@ -11,4 +11,33 @@ but no success. How can I do it?
 > --[[Joey]]
 
 >> Thanks a lot for the fast reply, Joey! It's good to know it.
->> --PTecza
\ No newline at end of file
+>> --PTecza
+
+
+## [[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