Template remover is a tool to remove the PHP and Jinja markup from HTML files.
Many tools, like html tidy, are designed to parse and analyze html files, however they do not play well when there is language markup. This projects aims to be a simple way of getting rid of those markups.
template_remover is based on regular expressions. This means that there are some edge cases that cannot be captured with this method. Although we believe those cases are too contrived, and probably should be avoided as many development tools will fail as well.
One example that won't work is the following::
<?php echo "?>" ?>
The reason it does not work is because when the method sees the first '?>' (the one inside the string), it thinks it's a closing tag.
Below are example of how template_remover.py is used:
$ remove_template.py filename.html $ remove_template.py filename.html | tidy -qe
You can install, upgrade or uninstall template-remover with these commands:
$ pip install template-remover $ pip install --upgrade template-remover $ pip uninstall template-remover
Python 2.7 is officially supported, 3.2, 3.3 and 3.4 should also work.
Help for this project is more than welcomed, so feel free to create an issue or to send a pull request via http://github.com/deezer/template-remover.
Tests are run using nose, either with:
$ python -R setup.py nosetests $ nosetests
Use the tool git-lint before any commit, so errors and style problems are caught early.
- Support more template engines and languages (Smarty, ASP, JSP, etc).
- Initial commit.