/opt/imunify360/venv/bin
NameSizeModeActions
__pycache__/-0755rm
activate17320644editdlrm
activate.csh9560644editdlrm
activate.fish22360644editdlrm
Activate.ps190330644editdlrm
distro2640755editdlrm
docutils2750755editdlrm
imunify360-command-wrapper70390755editdlrm
jsonschema2720755editdlrm
normalizer3030755editdlrm
pip2800755editdlrm
pip32800755editdlrm
pip3.102800755editdlrm
pip3.112800755editdlrm
pw-migrate2740755editdlrm
pwiz.py82490755editdlrm
pw_migrate2740755editdlrm
pybabel2810755editdlrm
python61440755editdlrm
python361440755editdlrm
python3.1161440755editdlrm
rst2html.py6610755editdlrm
rst2html4.py7830755editdlrm
rst2html5.py11180755editdlrm
rst2latex.py8600755editdlrm
rst2man.py6830755editdlrm
rst2odt.py8490755editdlrm
rst2odt_prepstyles.py6550755editdlrm
rst2pseudoxml.py6680755editdlrm
rst2s5.py7040755editdlrm
rst2xetex.py9400755editdlrm
rst2xml.py6690755editdlrm
rstpep2html.py7370755editdlrm
Edit: /opt/imunify360/venv/bin/rst2html5.py (1118B)
#!/builddir/build/BUILD/imunify360-venv-2.3.4/opt/imunify360/venv/bin/python3 # :Copyright: © 2015 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: 9021 $ # Date: $Date: 2022-03-04 16:54:22 +0100 (Fr, 04. Mär 2022) $ """ A minimal front end to the Docutils Publisher, producing HTML 5 documents. The output is also valid XML. """ try: import locale # module missing in Jython locale.setlocale(locale.LC_ALL, '') except locale.Error: pass from docutils.core import publish_cmdline, default_description description = ('Generates HTML5 documents from standalone ' 'reStructuredText sources.\n' + default_description) publish_cmdline(writer_name='html5', description=description)