We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 037b423 commit 00a85fdCopy full SHA for 00a85fd
1 file changed
README.textile
@@ -13,24 +13,25 @@ h2. Usage
13
>>> import textile
14
>>> s = """
15
... _This_ is a *test.*
16
-...
+...
17
... * One
18
... * Two
19
... * Three
20
21
... Link to "Slashdot":http://slashdot.org/
22
... """
23
>>> html = textile.textile(s)
24
>>> print html
25
-<em>This</em> is a <strong>test.</strong>
+ <p><em>This</em> is a <strong>test.</strong></p>
26
+
27
<ul>
28
<li>One</li>
29
<li>Two</li>
30
<li>Three</li>
31
</ul>
- <p>Link to <a href="http://slashdot.org/">Slashdot</a>
32
-</p>
33
->>>
+ <p>Link to <a href="http://slashdot.org/">Slashdot</a></p>
34
+>>>
35
</code>
36
</pre>
37
0 commit comments