markdown2latex 1.2
Extension
Latest Version: 1.3.1
Extension to python-markdown to support LaTeX (rather than html) output.
Authored by Rufus Pollock: <http://www.rufuspollock.org/>
Usage:
- Command Line
A script entitled markdown2latex.py is automatically installed. For details of usage see help:
$ markdown2latex.py -h
As a python-markdown extension:
import markdown md = markdown.Markdown(None, extensions=['latex']) # text is input string ... latex_out = md.convert(text)Directly as a module (slight inversion of std markdown extension setup):
import markdown import mdx_latex md = markdown.Markdown() latex_mdx = mdx_latex.LaTeXExtension() latex_mdx.extendMarkdown(md, markdown.__dict__) out = md.convert(text)
History
Version: 1.0 (November 15, 2006)
- First working version (compatible with markdown 1.5)
- Includes support for tables
Version: 1.1 (January 17, 2007)
- Support for verbatim and images
Version: 1.2 (June 2008)
- Refactor as an extension.
- Make into a proper python/setuptools package.
- Tested with markdown 1.7 but should work with 1.6 and (possibly) 1.5 (though pre/post processor stuff not as worked out there)
| File | Type | Py Version | Uploaded on | Size | # downloads |
|---|---|---|---|---|---|
| markdown2latex-1.2-py2.5.egg (md5) | Python Egg | 2.5 | 2008-06-28 | 14KB | 644 |
| markdown2latex-1.2.tar.gz (md5) | Source | 2008-06-28 | 8KB | 431 | |
- Author: Rufus Pollock (Open Knowledge Foundation)
- Home Page: http://www.okfn.org/okftext/
- Download URL: http://knowledgeforge.net/okftext/svn/trunk/python/mdx_latex/
- Keywords: latex markdown python
- License: MIT
- Categories
- Package Index Owner: rgrp
- DOAP record: markdown2latex-1.2.xml
