doc/runrst
author Martin Geisler <mg@aragost.com>
Thu, 22 Apr 2010 09:57:04 +0200
changeset 10971 cbe400a8e217
child 10972 0a2c6948f5f4
permissions -rwxr-xr-x
doc: add generic frontend to rst2man and rst2html This will allow us to easily register new roles and directives.

#!/usr/bin/env python
#
# runrst - register custom roles and run correct writer
#
# Copyright 2010 Matt Mackall <mpm@selenic.com> and others
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.

"""usage: %s WRITER args...

where WRITER is the name of a Docutils writer such as 'html' or 'manpage'
"""

import sys
from docutils.core import publish_cmdline

if __name__ == "__main__":
    if len(sys.argv) < 2:
        sys.stderr.write(__doc__ % sys.argv[0])
        sys.exit(1)

    writer = sys.argv[1]
    del sys.argv[1]

    publish_cmdline(writer_name=writer)