HTML to Django Converter
Project description
HTML To Django
Converts HTML files with special attributes to Django templates.
Installation
pip install html-to-django
Usage
html_to_django [-h] [-r] path
path
can either be a path to a file or a folder. When a file is passed only the file itself will be converted. When a folder is passed, all files ending in .html will be replaced. This searches through the folder recursivley.
Use -r
to replace the original files, instead of creating new ones.
By default, new ones are created in place next to the existing files, with the extension .n.html
.
You can also use the html_to_django_r
command if you are unable to pass the -r
parameter
(e.g. with the Bootstrap Studio "Export Script" setting).
Attributes
To add Django template tags to your HTML files, you need to add special attributes to your HTML tags like this:
<div dj-for="user in users">
<p>{{ user.name }}</p>
</div>
This will be converted to:
{% for user in users %}
<p>{{ user.name }}</p>
{% endfor %}
A complete list of supported attributes can be found here.
Contributing
To learn how to contribute to this project, please see CONTRIBUTING.md.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file html_to_django-0.0.2.tar.gz
.
File metadata
- Download URL: html_to_django-0.0.2.tar.gz
- Upload date:
- Size: 20.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | de0275c6aab8afb050cf75750c1e63957f0d767f380cc08883d5819c76b4c6a7 |
|
MD5 | 5327734bca6782c28cffe50b09fb3b96 |
|
BLAKE2b-256 | 7d6ea8bc689681959bc25c78b07225930723b04c2a0303bf74b84953d8b6a0fc |
File details
Details for the file html_to_django-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: html_to_django-0.0.2-py3-none-any.whl
- Upload date:
- Size: 18.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a6ca1092935574bed5c566272e1dc6e914291747e00a1c3d33e1f548aab17e9 |
|
MD5 | 22079d1dad2a0f8ba5dc02588f521589 |
|
BLAKE2b-256 | 4db52fbedeca7e147694ba3aadeab558516c29993345f36feeb8092be156134a |