<?xml version="1.0" encoding="UTF-8" ?>
<rdf:RDF xmlns="http://usefulinc.com/ns/doap#" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><Project><name>markdown2latex</name>
<shortdesc>Extension</shortdesc>
<description>Extension to python-markdown to support LaTeX (rather than html) output.

Authored by Rufus Pollock: &lt;http://www.rufuspollock.org/&gt;

Usage:
======

1. Command Line

A script entitled markdown2latex.py is automatically installed. For details of
usage see help::

    $ markdown2latex.py -h

2. As a python-markdown extension::

    import markdown
    md = markdown.Markdown(None,
        extensions=['latex'])
    # text is input string ...
    latex_out = md.convert(text)

3. 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)</description>
<download-page>http://knowledgeforge.net/okftext/svn/trunk/python/mdx_latex/</download-page>
<homepage rdf:resource="http://www.okfn.org/okftext/" />
<maintainer><foaf:Person><foaf:name>Rufus Pollock (Open Knowledge Foundation)</foaf:name>
<foaf:mbox_sha1sum>d5e344227e73de9427fc7772df172582fe62f385</foaf:mbox_sha1sum></foaf:Person></maintainer>
<release><Version><revision>1.2</revision></Version></release>
</Project></rdf:RDF>