aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/map_sorts_by_pagename_and_not_title_when_show__61__title_is_used.mdwn
diff options
context:
space:
mode:
authormartin <martin@web>2010-02-24 15:12:40 +0000
committerJoey Hess <joey@finch.kitenet.net>2010-02-24 15:12:40 +0000
commitfeeacaba028afe2e0b8835e2ebedc930de0f33a5 (patch)
tree4a3068fa91fe55b58590b067433cfb67355fd201 /doc/bugs/map_sorts_by_pagename_and_not_title_when_show__61__title_is_used.mdwn
parentb9aca496920ffd0edfcaba5d003bb68aa47dcb6a (diff)
downloadikiwiki-feeacaba028afe2e0b8835e2ebedc930de0f33a5.tar
ikiwiki-feeacaba028afe2e0b8835e2ebedc930de0f33a5.tar.gz
Diffstat (limited to 'doc/bugs/map_sorts_by_pagename_and_not_title_when_show__61__title_is_used.mdwn')
-rw-r--r--doc/bugs/map_sorts_by_pagename_and_not_title_when_show__61__title_is_used.mdwn10
1 files changed, 9 insertions, 1 deletions
diff --git a/doc/bugs/map_sorts_by_pagename_and_not_title_when_show__61__title_is_used.mdwn b/doc/bugs/map_sorts_by_pagename_and_not_title_when_show__61__title_is_used.mdwn
index f8e257daf..bc19e7d87 100644
--- a/doc/bugs/map_sorts_by_pagename_and_not_title_when_show__61__title_is_used.mdwn
+++ b/doc/bugs/map_sorts_by_pagename_and_not_title_when_show__61__title_is_used.mdwn
@@ -1,4 +1,4 @@
-The [[directive/map]] directive sorty by pagename. That looks kind of odd, when used together with show=title. I would expect it to sort by title then.
+The [[ikiwiki/directive/map]] directive sort by pagename. That looks kind of odd, when used together with show=title. I would expect it to sort by title then.
> This would be quite hard to fix. Map sorts the pages it displays by page
> name, which has the happy effect of making "foo/bar" come after "foo";
@@ -6,3 +6,11 @@ The [[directive/map]] directive sorty by pagename. That looks kind of odd, when
> it's located in. If sorting by title, that wouldn't hold. So, map
> would have to be effectively totally rewritten, to build up each group
> of child pages, and then re-sort those. --[[Joey]]
+
+>> Ok, you are right, that does would break the tree. This made me think that I do not
+>> need to generate a tree for my particular use case just a list, so i thought i could use [[ikiwiki/directive/inline]] instead.
+>> This created two new issues:
+>>
+>> 1. inline also does sort by pagename even when explicitly told to sort by title.
+>>
+>> 2. I cannot get inline to create a list when the htmltidy plugin is switched on. I have a template which is enclosed in an li tag, and i put the ul tag around the inline manually, but htmltidy breaks this. --martin