Clear html files that are generated by latexml
This tool can be used to postprocess html files generated by LaTeXml.
The purpose it to remove all lxt tags and hyperrefs such that the html file can be imported into external software.
Install the tool by running:
pip install latex_html_cleaner
This tool can be used to clean html file generated by the tex to html converter LaTeXML. You can run it by:
htmlcleaner.exe filename.html
A new file with the suffix _clean.html will be created with the cleaned html.
For all the details, do:
htmlcleaner.exe --help
giving the output:
usage: htmlcleaner [-h] [--version] [--output_filename STR] [-v] [-vv] [-w]
[-f [PATH ...]] [--clear_find_and_replace_defaults]
STR [STR ...]
Cleans html files and removes hyperrefs
positional arguments:
STR File name of html input
options:
-h, --help show this help message and exit
--version show program's version number and exit
--output_filename STR
File name of output html file
-v, --verbose set loglevel to INFO
-vv, --very-verbose, --debug
set loglevel to DEBUG
-w, --overwrite Overwrite the input html. Default = False, which means
a new html is created withthe suffix _clean
-f [PATH ...], --find_and_replace [PATH ...]
Define a list of key=value pairs to define string
patterns you want to replace
--clear_find_and_replace_defaults
Clear the predefined find and replace patterns
This project has been set up using PyScaffold 4.0.2. For details and usage information on PyScaffold see https://pyscaffold.org/.