##// END OF EJS Templates
remove trailing white space from test/fixtures/workflows.yml...
remove trailing white space from test/fixtures/workflows.yml git-svn-id: http://svn.redmine.org/redmine/trunk@16339 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15826:8f1055c55b90
r15957:7816a4025a03 master
Show More
wiki_syntax_textile.html
72 lines | 4.1 KiB | text/html | HtmlLexer
/ public / help / it / wiki_syntax_textile.html
Toshi MARUYAMA
copy English wiki syntax helps to other languages (#14630)...
r11866 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Wiki formatting</title>
Jean-Philippe Lang
Extract wiki_syntax internal style sheets into an external one (#24800)....
r15825 <link rel="stylesheet" type="text/css" href="../wiki_syntax.css" />
Toshi MARUYAMA
copy English wiki syntax helps to other languages (#14630)...
r11866 </head>
<body>
<h1>Wiki Syntax Quick Reference</h1>
<table style="width:100%">
<tr><th colspan="3">Font Styles</th></tr>
Jean-Philippe Lang
Removed deprecated align and width html attributes (#15307)....
r12038 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
Toshi MARUYAMA
fix icon image paths of wiki syntax help (#14630)...
r11870 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
<tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
<tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
Toshi MARUYAMA
copy English wiki syntax helps to other languages (#14630)...
r11866 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
Toshi MARUYAMA
fix icon image paths of wiki syntax help (#14630)...
r11870 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
Toshi MARUYAMA
use escaping html in wiki_syntax.html...
r11883 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
Toshi MARUYAMA
copy English wiki syntax helps to other languages (#14630)...
r11866 <pre>
lines
of code
</pre>
</td></tr>
<tr><th colspan="3">Lists</th></tr>
Jean-Philippe Lang
Wiki formatting documentation for nested lists (#4518)....
r13374 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
<tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
Toshi MARUYAMA
copy English wiki syntax helps to other languages (#14630)...
r11866
<tr><th colspan="3">Headings</th></tr>
Toshi MARUYAMA
fix icon image paths of wiki syntax help (#14630)...
r11870 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
<tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
<tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
Toshi MARUYAMA
copy English wiki syntax helps to other languages (#14630)...
r11866
<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>
Toshi MARUYAMA
fix icon image paths of wiki syntax help (#14630)...
r11870 <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>
Toshi MARUYAMA
copy English wiki syntax helps to other languages (#14630)...
r11866 <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>
<tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
<tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
<tr><th colspan="3">Inline images</th></tr>
Toshi MARUYAMA
fix icon image paths of wiki syntax help (#14630)...
r11870 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
Toshi MARUYAMA
copy English wiki syntax helps to other languages (#14630)...
r11866 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
Toshi MARUYAMA
Adds table reference to textile help (#12734)....
r13443
<tr><th colspan="3">Tables</th></tr>
<tr>
<th></th>
<td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
<td>
<table class="sample">
<tbody>
<th>A</th><th>B</th><th>C</th>
<tr><td>A</td><td>B</td><td>C</td></tr>
<tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
<tr><td colspan="2">col span</td></tr>
</tbody>
</table>
</td>
</tr>
Toshi MARUYAMA
copy English wiki syntax helps to other languages (#14630)...
r11866 </table>
Toshi MARUYAMA
rename textile wiki syntax help files (#16373)...
r13805 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
Toshi MARUYAMA
copy English wiki syntax helps to other languages (#14630)...
r11866
</body>
</html>