diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-03-05 11:14:35 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-03-05 11:14:35 +0000 |
commit | c61424e57a0f41943aeda7b22ed2b206d138427e (patch) | |
tree | abec5c51bffd7d6ad41c1f718c02483e31d0d3fe /public/help/wiki_syntax.html | |
parent | b0754ca720f6262dd3b6f16eac23082d28d6fae6 (diff) | |
download | redmine-c61424e57a0f41943aeda7b22ed2b206d138427e.tar.gz redmine-c61424e57a0f41943aeda7b22ed2b206d138427e.zip |
Display wiki syntax quick ref link within the jstoolbar (closes #629, #767).
Added named links syntax on quick ref (closes #766, #778).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1190 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public/help/wiki_syntax.html')
-rw-r--r-- | public/help/wiki_syntax.html | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/public/help/wiki_syntax.html b/public/help/wiki_syntax.html index 17b54a0b2..d2ca19b2c 100644 --- a/public/help/wiki_syntax.html +++ b/public/help/wiki_syntax.html @@ -4,10 +4,10 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <title>Wiki formatting</title> -<link rel="stylesheet" href="html.css" type="text/css" /> <style type="text/css"> h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; } -table { font-family: Verdana, sans-serif; font-size: 12px; color: #444; } +body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; } +table th { padding-top: 1em; } table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;} table td code { font-size: 1.2em; } table td h1 { font-size: 1.8em; text-align: left; } @@ -46,6 +46,9 @@ table td h3 { font-size: 1.2em; text-align: left; } <tr><th colspan="3">Links</th></tr> <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr> +<tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr> + +<tr><th colspan="3">Redmine links</th></tr> <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr> <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr> <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr> @@ -55,5 +58,7 @@ table td h3 { font-size: 1.2em; text-align: left; } <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr> </table> +<p><a href="http://www.redmine.org/wiki/redmine/RedmineWikiFormatting" onclick="window.open('http://www.redmine.org/wiki/redmine/RedmineWikiFormatting', '', ''); return false;">More Information</a></p> + </body> </html> |