From: openmedi Date: Tue, 18 Apr 2017 12:19:44 +0000 (-0400) Subject: (no commit message) X-Git-Tag: debian/3.20170622~75 X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/d16946c950b694b8357336cd10e014b74f7cde74 --- diff --git a/doc/forum/Limit_pagespec_to_a_certain_depth.mdwn b/doc/forum/Limit_pagespec_to_a_certain_depth.mdwn new file mode 100644 index 000000000..b1d7e49bb --- /dev/null +++ b/doc/forum/Limit_pagespec_to_a_certain_depth.mdwn @@ -0,0 +1 @@ +I'd like my index page of my wiki to show me a list of all the files in the wiki's root and only the names of "folder-pages" (those pages that are named the same way as the folders). I used the map directive to create a list, but I can't come up with a way to limit the depth of the pagespec, so everything inside of the folders is matched and listed as well, which is not what I want. Is there a way to limit the page spec's depth or make it exclude pages in subfolders? I tried `[[!map pages="page(* and !*/*)"]]` or `[[!map pages="page(* and !foobar/*)"]]`, but both exclude the "folder-pages" (either all of them (first case) or the ones that I have specified (second case)).