Skip to content

A Python port of Textile, A humane web text generator

License

Notifications You must be signed in to change notification settings

appli-intramuros/python-textile

 
 

Repository files navigation

python-textile

python-textile is a Python port of Textile, Dean Allen’s humane web text generator.

Installation

pip install textile

Optional dependencies include:

  • PIL/Pillow (for checking images size)
  • regex (for faster unicode-aware string matching).

Usage

import textile
>>> s = """
... _This_ is a *test.*
...
... * One
... * Two
... * Three
...
... Link to "Slashdot":http://slashdot.org/
... """
>>> html = textile.textile(s)
>>> print html
	<p><em>This</em> is a <strong>test.</strong></p>

	<ul>
		<li>One</li>
		<li>Two</li>
		<li>Three</li>
	</ul>

	<p>Link to <a href="http://slashdot.org/">Slashdot</a></p>
>>>

Notes:

  • Active development supports Python 2.7 or later (including Python 3.3+).

About

A Python port of Textile, A humane web text generator

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%