1#!/usr/local/bin/python3.8
2
3# $Id: rst2pseudoxml.py 4564 2006-05-21 20:44:42Z wiemann $
4# Author: David Goodger <goodger@python.org>
5# Copyright: This module has been placed in the public domain.
6
7"""
8A minimal front end to the Docutils Publisher, producing pseudo-XML.
9"""
10
11try:
12    import locale
13    locale.setlocale(locale.LC_ALL, '')
14except:
15    pass
16
17from docutils.core import publish_cmdline, default_description
18
19
20description = ('Generates pseudo-XML from standalone reStructuredText '
21               'sources (for testing purposes).  ' + default_description)
22
23publish_cmdline(description=description)
24