1#!/usr/local/bin/python3.8
2
3# $Id: rst2xml.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 Docutils 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 Docutils-native XML from standalone '
21               'reStructuredText sources.  ' + default_description)
22
23publish_cmdline(writer_name='xml', description=description)
24