Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the Name of the Python Module that Formats arbitrary Text to nicely looking HTML?

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 :)

like image 826
Armin Ronacher Avatar asked Sep 22 '08 20:09

Armin Ronacher


2 Answers

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

like image 155
Armin Ronacher Avatar answered Nov 15 '22 18:11

Armin Ronacher


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)
like image 42
sean lynch Avatar answered Nov 15 '22 19:11

sean lynch