mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-17 06:20:27 +00:00
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@2209 e7d03fd6-7b0d-0410-9947-9c21f3af8025
25 lines
643 B
Python
Executable file
25 lines
643 B
Python
Executable file
#!/usr/bin/env python2.4
|
|
|
|
# Author: David Goodger
|
|
# Contact: goodger@users.sourceforge.net
|
|
# Revision: $Revision$
|
|
# Date: $Date$
|
|
# Copyright: This module has been placed in the public domain.
|
|
"""
|
|
Produces custom HTML and machine-parseable navigation info
|
|
"""
|
|
|
|
try:
|
|
import locale
|
|
locale.setlocale(locale.LC_ALL, '')
|
|
except:
|
|
pass
|
|
|
|
from docutils.core import publish_cmdline, default_description
|
|
|
|
|
|
description = ('Generates (X)HTML documents and navigation information '
|
|
'from standalone reStructuredText sources. ' +
|
|
default_description)
|
|
|
|
publish_cmdline(writer_name='htmlnav', description=description)
|