Skip to content

Commit 00a85fd

Browse files
committed
Ironically, our exmaple output was incorrect.
1 parent 037b423 commit 00a85fd

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

README.textile

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,25 @@ h2. Usage
1313
>>> import textile
1414
>>> s = """
1515
... _This_ is a *test.*
16-
...
16+
...
1717
... * One
1818
... * Two
1919
... * Three
20-
...
20+
...
2121
... Link to "Slashdot":http://slashdot.org/
2222
... """
2323
>>> html = textile.textile(s)
2424
>>> print html
25-
<em>This</em> is a <strong>test.</strong>
25+
<p><em>This</em> is a <strong>test.</strong></p>
26+
2627
<ul>
2728
<li>One</li>
2829
<li>Two</li>
2930
<li>Three</li>
3031
</ul>
31-
<p>Link to <a href="http://slashdot.org/">Slashdot</a>
32-
</p>
33-
>>>
32+
33+
<p>Link to <a href="http://slashdot.org/">Slashdot</a></p>
34+
>>>
3435
</code>
3536
</pre>
3637

0 commit comments

Comments
 (0)