Files @ r12:069fe7b2e539
Branch filter:

Location: public/ws-vacation/doc/tools/ws_rst2man.py - annotation

ws
Added tag v0.5 for changeset 0ea9b2bfb110
#!/usr/bin/python

# Author: 
# Contact: grubert@users.sf.net
# Copyright: This module has been placed in the public domain.

"""
man.py
======

This module provides a simple command line interface that uses the
man page writer to output from ReStructuredText source.
"""

import locale
try:
    locale.setlocale(locale.LC_ALL, '')
except:
    pass

from docutils.core import publish_cmdline, default_description
from docutils.writers import manpage
import ws_docutils.span

description = ("Generates plain unix manual documents.  " + default_description)

publish_cmdline(writer=manpage.Writer(), description=description)