3 # Author: David Goodger
4 # Contact: goodger@users.sourceforge.net
7 # Copyright: This module has been placed in the public domain.
10 A minimal front end to the Docutils Publisher, producing pseudo-XML.
15 locale
.setlocale(locale
.LC_ALL
, '')
19 from docutils
.core
import publish
, default_description
24 description
= ('Generates pseudo-XML from standalone reStructuredText '
25 'sources (for testing purposes). ' + default_description
)
27 publish(description
=description
)