vote up 2 vote down star

A while ago I came across a Python library that formats regular text to HTML similar to Markdown, reStructuredText and Textile, just that it had no syntax at all. It detected indentatations, quotes, links and newlines/paragraphs only.

Unfortunately I lost the name of the library and was unable to Google it. Anyone any ideas?

Edit: reStructuredText aka rst == docutils. That's not what I'm looking for :)

flag

50% accept rate

3 Answers

vote up 5 vote down

Okay. I found it now. It's called PottyMouth.

link|flag
Now that's a name ! – rlerallut Sep 22 '08 at 22:08
vote up 0 vote down

Markdown in python is a python implementation of the perl based markdown utility.

Markown converts various forms of structured text to valid html, and one of the supported forms is just plain ascii. Use is pretty straight forward.

python markdown.py input_file.txt > output_file.html

Markdown can be easily called as a module too:

import markdown
html = markdown.markdown(your_text_string)
link|flag
vote up 0 vote down

Sphinx is a documentation generator using reStructuredText. It's quite nice, although I haven't used it personally.

The website Hazel Tree, which compiles python texts uses Sphinx, as well as the new Python documentation.

link|flag
As the co-author of Sphinx I know that one ;) But it was a lot simpler. Not more than a simple 4KB library that just convers text into nicer looking HTML. – Armin Ronacher Sep 22 '08 at 20:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.