python-textile icon indicating copy to clipboard operation
python-textile copied to clipboard

A Python port of Textile, A humane web text generator

Results 3 python-textile issues
Sort by recently updated
recently updated
newest added

``` |6.12.27global| 10h00m39s239ms 074 | 38.46 | 1040 |some comments| ##title## || date ||version ||data ||data ||data ||comments|| |..|... ``` There are 2 tables, but textile always combine them together...

If the input is something like this: ``` text="First line\n\n** Point 1\n* Point2\nLast line" print textile.textile_restricted(text) ``` The output looks like this: ``` First line Point 1 Point2 Last line...

Generally I like how textile let's HTML pass through, but I recently came across a problem along the lines of the following: ``` python import textile print textile.textile("""label""") ``` from...