| Server IP : 82.208.35.60 / Your IP : 216.73.217.39 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/textproc/py-docutils/work-py39/docutils-0.17.1/tools/ |
Upload File : |
#!/usr/bin/env python3
# -*- coding: utf8 -*-
# :Copyright: © 2020 Günter Milde.
# :License: Released under the terms of the `2-Clause BSD license`_, in short:
#
# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved.
# This file is offered as-is, without any warranty.
#
# .. _2-Clause BSD license: https://opensource.org/licenses/BSD-2-Clause
#
# Revision: $Revision: 8673 $
# Date: $Date: 2021-04-07 19:57:27 +0200 (Mi, 07. Apr 2021) $
"""
A generic front end to the Docutils Publisher.
"""
try:
import locale # module missing in Jython
locale.setlocale(locale.LC_ALL, '')
except locale.Error:
pass
import argparse
import sys
from docutils.core import publish_cmdline, default_description
from docutils.utils import SystemMessage
description = u'Generate documents from reStructuredText or Markdown sources.'
epilog = (u'Currently, the component selection cannot be specified in the '
u'configuration file. '
u'The availability of some options depends on the selected '
u'components, the list below adapts to your selection.'
)
parser = argparse.ArgumentParser(add_help=False,
description=description, epilog=epilog,
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument('--reader', choices=('standalone', 'pep'),
help=u'Reader name.',
default='standalone')
parser.add_argument('--parser', choices=('markdown', 'rst'),
help=u'Parser name.',
default='rst')
parser.add_argument('--writer',
# choices=('html', 'html4', 'html5', 'latex', 'xelatex',
# 'odt', 'xml', 'pseudoxml', 'manpage',
# 'pep_html', 's5_html'),
help=u'Writer name.',
default='html5')
(args, remainder) = parser.parse_known_args()
if '-h' in sys.argv or '--help' in sys.argv:
print(parser.format_help())
print('')
try:
publish_cmdline(reader_name=args.reader,
parser_name=args.parser,
writer_name=args.writer,
description=default_description,
argv=remainder)
except ImportError as error:
print(parser.format_help())
print('ImportError:', error)