diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-03-15 10:02:00 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-03-15 10:02:00 +0000 |
commit | 07033fff2c047e3277f7f0e00adeb3872497c79c (patch) | |
tree | 20c1ac384d2d968e76685782b2114895dd30a082 /public/help/sl | |
parent | 6c5e5142dffd2a8161f5c6a8a81d2e5b7276acae (diff) | |
download | redmine-07033fff2c047e3277f7f0e00adeb3872497c79c.tar.gz redmine-07033fff2c047e3277f7f0e00adeb3872497c79c.zip |
Wrong syntax for wiki macros in wiki_syntax_detailed.html (#19381).
Patch by Go MAEDA.
git-svn-id: http://svn.redmine.org/redmine/trunk@14102 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public/help/sl')
-rw-r--r-- | public/help/sl/wiki_syntax_detailed.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/public/help/sl/wiki_syntax_detailed.html b/public/help/sl/wiki_syntax_detailed.html index dc26a2b1e..2fa87bdcc 100644 --- a/public/help/sl/wiki_syntax_detailed.html +++ b/public/help/sl/wiki_syntax_detailed.html @@ -281,14 +281,14 @@ To go live, all you need to add is a database and a web server. <dt><code>child_pages</code></dt> <dd><p>Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:</p> - <pre><code>!{{child_pages}} -- can be used from a wiki page only -!{{child_pages(depth=2)}} -- display 2 levels nesting only</code></pre></dd> + <pre><code>{{child_pages}} -- can be used from a wiki page only +{{child_pages(depth=2)}} -- display 2 levels nesting only</code></pre></dd> <dt><code>include</code></dt> <dd><p>Include a wiki page. Example:</p> - <pre><code>!{{include(Foo)}}</code></pre> + <pre><code>{{include(Foo)}}</code></pre> <p>or to include a page of a specific project wiki:</p> - <pre><code>!{{include(projectname:Foo)}}</code></pre></dd> + <pre><code>{{include(projectname:Foo)}}</code></pre></dd> <dt><code>collapse</code></dt> <dd><p>Inserts of collapsed block of text. Example:</p> |