diff options
author | Jon Dowland <jon@ncl.ac.uk> | 2009-05-18 11:42:16 +0100 |
---|---|---|
committer | Jon Dowland <jon@ncl.ac.uk> | 2009-05-18 11:42:16 +0100 |
commit | bca02e0ee8106cf5581d9de34c2854da63ade678 (patch) | |
tree | 8756475025cafe482cb4a03ec7b72e343d94fbd2 /doc/bugs | |
parent | 749b0fe54dddd33058755b8f2fb60145e94656a7 (diff) | |
download | ikiwiki-bca02e0ee8106cf5581d9de34c2854da63ade678.tar ikiwiki-bca02e0ee8106cf5581d9de34c2854da63ade678.tar.gz |
archive=no for test inlines
Diffstat (limited to 'doc/bugs')
-rw-r--r-- | doc/bugs/pagespec_can__39__t_match___123__curly__125___braces.mdwn | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/doc/bugs/pagespec_can__39__t_match___123__curly__125___braces.mdwn b/doc/bugs/pagespec_can__39__t_match___123__curly__125___braces.mdwn index 0c77a2f41..3eaf38910 100644 --- a/doc/bugs/pagespec_can__39__t_match___123__curly__125___braces.mdwn +++ b/doc/bugs/pagespec_can__39__t_match___123__curly__125___braces.mdwn @@ -1,6 +1,6 @@ I want match pages which have actually curly braces in the names (like this one), but this matches a lot of pages without the braces in their names :( : -[[!inline show="3" archive="yes" pages="*_{*}_*"]] +[[!inline show="3" feed="no" archive="yes" pages="*_{*}_*"]] (note: the inline above has been restricted to 3 matches to keep this page concise. Hopefully it is still clear that this page is not in the output set, @@ -9,20 +9,17 @@ titles). When escaped, it doesn't work at all: -[[!inline show="3" archive="yes" pages="*_\{*}_*"]] +[[!inline show="3" feed="no" archive="yes" pages="*_\{*}_*"]] -[[!inline show="3" archive="yes" pages="*_{*\}_*"]] +[[!inline show="3" feed="no" archive="yes" pages="*_{*\}_*"]] More tests: "\*{\*": -[[!inline show="3" archive="yes" pages="*{*"]] +[[!inline show="3" feed="no" archive="yes" pages="*{*"]] -"\*}\*": +"\*\\{\*": -[[!inline show="3" archive="yes" pages="*}*"]] +[[!inline show="3" feed="no" archive="yes" pages="*\{*"]] -"\*}\* and \*{\*": - -[[!inline show="3" archive="yes" pages="*}* and *{*"]] |