diff options
author | Go MAEDA <maeda@farend.jp> | 2019-06-23 04:25:17 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-06-23 04:25:17 +0000 |
commit | 1916d4fa4098e8645a5496a0e1cc76a0c93e2def (patch) | |
tree | 844a66e9896c68681add1bf48218fb5a6c09f4f9 /public/help/sl | |
parent | b076ff80797fea7c2907fae2e11d774480d3d2dd (diff) | |
download | redmine-1916d4fa4098e8645a5496a0e1cc76a0c93e2def.tar.gz redmine-1916d4fa4098e8645a5496a0e1cc76a0c93e2def.zip |
Add "issue" macro to help files (#29489).
Patch by Go MAEDA.
git-svn-id: http://svn.redmine.org/redmine/trunk@18313 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public/help/sl')
-rw-r--r-- | public/help/sl/wiki_syntax_detailed_markdown.html | 7 | ||||
-rw-r--r-- | public/help/sl/wiki_syntax_detailed_textile.html | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/public/help/sl/wiki_syntax_detailed_markdown.html b/public/help/sl/wiki_syntax_detailed_markdown.html index 56a2c3f44..0359edb1b 100644 --- a/public/help/sl/wiki_syntax_detailed_markdown.html +++ b/public/help/sl/wiki_syntax_detailed_markdown.html @@ -283,6 +283,13 @@ It can be expanded by clicking a link. <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> + + <dt><code>issue</code></dt> + <dd><p>Inserts a link to an issue with flexible text. Examples:</p> + <pre>{{issue(123)}} -- Issue #123: Enhance macro capabilities +{{issue(123, project=true)}} -- Andromeda - Issue #123:Enhance macro capabilities +{{issue(123, tracker=false)}} -- #123: Enhance macro capabilities +{{issue(123, subject=false, project=true)}} -- Andromeda - Issue #123</pre></dd> </dl> </p> diff --git a/public/help/sl/wiki_syntax_detailed_textile.html b/public/help/sl/wiki_syntax_detailed_textile.html index 0732f797b..f31f79362 100644 --- a/public/help/sl/wiki_syntax_detailed_textile.html +++ b/public/help/sl/wiki_syntax_detailed_textile.html @@ -285,6 +285,13 @@ It can be expanded by clicking a link. <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> + + <dt><code>issue</code></dt> + <dd><p>Inserts a link to an issue with flexible text. Examples:</p> + <pre>{{issue(123)}} -- Issue #123: Enhance macro capabilities +{{issue(123, project=true)}} -- Andromeda - Issue #123:Enhance macro capabilities +{{issue(123, tracker=false)}} -- #123: Enhance macro capabilities +{{issue(123, subject=false, project=true)}} -- Andromeda - Issue #123</pre></dd> </dl> </p> |