diff options
Diffstat (limited to 'public/help/cs')
-rw-r--r-- | public/help/cs/wiki_syntax_detailed.html | 36 |
1 files changed, 32 insertions, 4 deletions
diff --git a/public/help/cs/wiki_syntax_detailed.html b/public/help/cs/wiki_syntax_detailed.html index 7b6321b1a..011f5188c 100644 --- a/public/help/cs/wiki_syntax_detailed.html +++ b/public/help/cs/wiki_syntax_detailed.html @@ -253,10 +253,38 @@ Vše, co je potřeba, je databázový a webový server. <p>Redmine obsahuje následující vestavěná makra:</p> - <p><dl><dt><code>hello_world</code></dt><dd><p>Jednoduché makro.</p></dd><dt><code>include</code></dt><dd><p>Vloží Wiki stránku. Např.:</p> - - <pre><code>{{include(Foo)}}</code></pre></dd><dt><code>macro_list</code></dt><dd><p>Zobrazí seznam všech dostupných maker, včetně jejich popisu, existuje-li.</p></dd></dl></p> - + <p> + <dl> + <dt><code>hello_world</code></dt> + <dd><p>Jednoduché makro.</p></dd> + + <dt><code>macro_list</code></dt> + <dd><p>Zobrazí seznam všech dostupných maker, včetně jejich popisu, existuje-li.</p></dd> + + <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> + + <dt><code>include</code></dt> + <dd><p>Vloží Wiki stránku. Např.:</p> + <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> + + <dt><code>collapse</code></dt> + <dd><p>Inserts of collapsed block of text. Example:</p> + <pre><code>{{collapse(View details...) +This is a block of text that is collapsed by default. +It can be expanded by clicking a link. +}}</code></pre></dd> + + <dt><code>thumbnail</code></dt> + <dd><p>Displays a clickable thumbnail of an attached image. Examples:</p> + <pre>{{thumbnail(image.png)}} +{{thumbnail(image.png, size=300, title=Thumbnail)}}</pre></dd> + </dl> + </p> <h2><a name="13" class="wiki-page"></a>Zvýrazňování kódu</h2> |