Files @ r16:b02d1f078d98
Branch filter:

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

ws
doc/index-template.txt: Add javascript to add a trailing slash, if the URL does not end in `.html' or a `/'.
This is needed for bitbucket.org to make relative links work.
#!/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)