Remove the template markup from html files
Project description
Template Remover
Template remover is a tool to remove the PHP and Jinja markup from HTML files.
Motivation
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.
Limitations
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.
Example use
Below are example of how template_remover.py is used:
$ remove_template.py filename.html $ remove_template.py filename.html | tidy -qe
Installation
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 Versions
Python 2.7 is officially supported, 3.2, 3.3 and 3.4 should also work.
Development
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.
TODOS and Possible Features
Support more template engines and languages (Smarty, ASP, JSP, etc).
Changelog
v0.1 (2014-05-07)
Initial commit.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file template-remover-0.1.9.tar.gz
.
File metadata
- Download URL: template-remover-0.1.9.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 480f1ce63f56affac1edb29356afcca1260e8409cd928fcf9438fc149df5ff41 |
|
MD5 | abb32d7b4948758068f76ee6e2d2c2d7 |
|
BLAKE2b-256 | 3489e440ff92cd0de37dbd7d7660fe75bb29e8674dae56bd2e20ab2ef3e377c8 |