/opt/imunify360/venv/bin
NameSizeModeActions
__pycache__/-0755rm
activate17340644editdlrm
activate.csh9580644editdlrm
activate.fish22340644editdlrm
Activate.ps190330644editdlrm
distro2120755editdlrm
docutils2230755editdlrm
imunify360-command-wrapper122100755editdlrm
jsonschema2200755editdlrm
normalizer2510755editdlrm
pip2800755editdlrm
pip32800755editdlrm
pip3.112800755editdlrm
pw-migrate2220755editdlrm
pwiz.py82490755editdlrm
pw_migrate2220755editdlrm
pybabel2290755editdlrm
python159600755editdlrm
python3159600755editdlrm
python3.11159600755editdlrm
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/rst2xetex.py (940B)
#!/builddir/build/BUILD/imunify360-venv-2.6.3/opt/imunify360/venv/bin/python3 # $Id: rst2xetex.py 9115 2022-07-28 17:06:24Z milde $ # Author: Guenter Milde # Copyright: This module has been placed in the public domain. """ A minimal front end to the Docutils Publisher, producing Lua/XeLaTeX code. """ try: import locale locale.setlocale(locale.LC_ALL, '') except Exception: pass from docutils.core import publish_cmdline description = ('Generates LaTeX documents from standalone reStructuredText ' 'sources for compilation with the Unicode-aware TeX variants ' 'XeLaTeX or LuaLaTeX. ' 'Reads from (default is stdin) and writes to ' ' (default is stdout). See ' ' for ' 'the full reference.') publish_cmdline(writer_name='xetex', description=description)