diff options
author | Simon McVittie <smcv@ http://smcv.pseudorandom.co.uk/> | 2008-07-21 12:46:35 +0100 |
---|---|---|
committer | Simon McVittie <smcv@ http://smcv.pseudorandom.co.uk/> | 2008-07-21 12:46:35 +0100 |
commit | 953a959be72c021121d8d3c4a737f48bf52149fe (patch) | |
tree | c949e0224a557e48b3db0b91ab81623961ba7a20 /doc/plugins/conditional | |
parent | 1ca63edde0a1f09e58c9c1da1cf9ac7a6805750b (diff) | |
download | ikiwiki-953a959be72c021121d8d3c4a737f48bf52149fe.tar ikiwiki-953a959be72c021121d8d3c4a737f48bf52149fe.tar.gz |
Migrate escaped directives (\[[) in doc/plugins to have \[[! prefix
Diffstat (limited to 'doc/plugins/conditional')
-rw-r--r-- | doc/plugins/conditional/discussion.mdwn | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/plugins/conditional/discussion.mdwn b/doc/plugins/conditional/discussion.mdwn index ff37623c3..629d05940 100644 --- a/doc/plugins/conditional/discussion.mdwn +++ b/doc/plugins/conditional/discussion.mdwn @@ -38,10 +38,10 @@ I have a sidebar that contains <pre> #### Archives - \[[calendar type="year" months_per_row="6" pages="blog/* and !*/Discussion"]] - \[[calendar type="month" pages="blog/* and !*/Discussion"]] + \[[!calendar type="year" months_per_row="6" pages="blog/* and !*/Discussion"]] + \[[!calendar type="month" pages="blog/* and !*/Discussion"]] <h4>Indices</h4> - \[[map pages="archives/* and !*/Discussion"]] + \[[!map pages="archives/* and !*/Discussion"]] </pre> I am trying to make it so that the archives and index only show up if the destpage is either blog/* or / -- the top of the wiki. Unfortunately, I don't think I am getting the conditional right -- I have a "]] left over at the end (looking at the rendered html). Ideally, I would like to be able to do todays calendar on the top level pagel and |