-
Notifications
You must be signed in to change notification settings - Fork 2
/
textile.html
115 lines (110 loc) · 2.81 KB
/
textile.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<p>Many people prefer <a href="http://en.wikipedia.org/wiki/Textile_(markup_language)" target="_blank">Textile</a>
over standard HTML because it is less verbose. Textile is very similar
to plain text, but there are a few additional enhancements to make it
suitable for hypertext documents.</p>
<table id="filter-reference-table">
<thead>
<tr>
<th>To see this:</th>
<th>Type this:</th>
<tr>
</thead>
<tbody>
<tr>
<td><strong>bold</strong></td>
<td><pre>*bold*</pre></td>
</tr>
<tr>
<td><em>italics</em></td>
<td><pre>_italics_</pre></td>
</tr>
<tr>
<td><del>strikethrough</del></td>
<td><pre>-strikethrough-</pre></td>
</tr>
<tr>
<td>x<sup>superscript</sup></td>
<td><pre>x^superscript^</pre></td>
</tr>
<tr>
<td>a<sub>subscript</sub></td>
<td><pre>a~subscript~</pre></td>
</tr>
<tr>
<td><code>code phrase</code></td>
<td><pre>@code phrase@</pre></td>
</tr>
<tr>
<td>link to <a href="http://radiantcms.org">Radiant CMS</a></td>
<td><pre>link to "Radiant CMS":http://radiantcms.org</pre></td>
</tr>
<tr>
<td><acronym title="Just Another Acronym">JAA</acronym></td>
<td><pre>JAA(Just Another Acronym)</pre></td>
</tr>
<tr>
<td><span style="color:red">Red Text</span></td>
<td><pre>%{color:red}Red Text%</pre></td>
</tr>
<tr>
<td>
<p>A bulleted list:</p>
<ul>
<li>item one</li>
<li>item two</li>
<li>item three</li>
</ul>
</td>
<td>
<pre>A bulleted list:
* item one
* item two
* item three</pre>
</td>
</tr>
<tr>
<td>
<p>A numbered list:</p>
<ol>
<li>item one</li>
<li>item two</li>
<li>item three</li>
</ol>
</td>
<td>
<pre>A numbered list:
# item one
# item two
# item three</pre>
</td>
</tr>
<tr>
<td>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
</td>
<td>
<pre>h1. Heading 1
h2. Heading 2
h3. Heading 3
h4. Heading 4</pre>
</td>
</tr>
<tr>
<td><blockquote>Roses are red, violets are blue, Textile is nice, and so are you!</blockquote></td>
<td>
<pre>bq. Roses are red, violets are blue,
Textile is nice, and so are you!</pre>
</tr>
<tr>
<td><img src="/../images/radiant/radiant-badge-color.png" alt="" /></td>
<td><pre>!/images/radiant/radiant-badge-color.png!</pre></td>
</tr>
</tbody>
</table>
<p>Advanced users may want to play around with the official
<a href="http://textism.com/tools/textile/" target="_blank">Textile Dingus</a> or review
the <a href="http://redcloth.org/textile/" target="_blank">RedCloth Textile
Reference</a>.</p>