]> sipb.mit.edu Git - ikiwiki.git/blobdiff - doc/bugs/Map_sorts_subtags_under_a_different_tag.mdwn
tested this patch and found problems
[ikiwiki.git] / doc / bugs / Map_sorts_subtags_under_a_different_tag.mdwn
index ce144300ddcbf0d1ab85a7d99c6547d856892307..444de431b8bbf58229defab80485b973f69303d1 100644 (file)
@@ -16,7 +16,7 @@ I have a few tags starting with `a` (abridged list):
 
 In `wiki-wc/factors/tag.mdwn`, I have a map for these tags:
 
-    [[map pages="factors/tag/*"]]
+    \[[map pages="factors/tag/*"]]
 
 and this works, except that for *whatever* reason, it actually sorts the three
 `affects/*` tags under `active`:
@@ -27,4 +27,23 @@ and this works, except that for *whatever* reason, it actually sorts the three
                       ■ developers
                       ■ users
 
+And this is actually in the HTML code:
+
+    <li><a href="active/">active</a>
+    <ul>
+    <li><a href="affects/contributors/">contributors</a>
+    </li>
+    <li><a href="affects/developers/">developers</a>
+    </li>
+    <li><a href="affects/users/">users</a>
+    </li></ul>
+    </li>
+    <li><a href="approach/">approach</a>
+    </li>
+
+So it's not that the `<ul>` has an empty parent `<li>`, the three tags are
+*really* children of `active`.
+
 This really blows my mind. :)
+
+Rendering issue. [[fixed|done]] --[[Joey]]