A Django template tag application for minifying block-level HTML elements only
Project description
Django Smart Spaceless is a Django template tag application for minifying block-level HTML elements only.
It’s just like spaceless, but preserves white space between inline HTML elements. Useful for HTML where spaces directly between <a>, <strong>, and other inline elements is likely desired to be preserved. Packages the django-htmlmin project to be used as a template tag.
Install
$ pip install django-smartspaceless
Add to settings.py.
INSTALLED_APPS = [
# ...
'smartspaceless',
]
Usage
{% load smartspaceless_tags %}
{% smartspaceless %}
<p><a href="#">Link 1</a></p>
<p><a href="#">Link 2</a> <a href="#">Link 3</a></p>
{% endsmartspaceless %}
Result:
<p><a href="#">Link 1</a></p><p><a href="#">Link 2</a> <a href="#">Link 3</a></p>
The space between <a href="#">Link 2</a> and <a href="#">Link 3</a> is preserved. Removing that space would be bad.
Note
Please note that django-htmlmin by default uses the html5lib parser, which prepends possibly missing <html><head></head><body> and appends possibly missing </body></html> tags in an effort to create valid HTML. The template tag changes this default behavior to use html.parser, the HTML parser in Python’s standard library, which does not alter HTML fragments.
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 django-smartspaceless-0.1.2.tar.gz
.
File metadata
- Download URL: django-smartspaceless-0.1.2.tar.gz
- Upload date:
- Size: 3.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2336382a64be18338591c0f930434f09aabed6ff3995a48ec9e59c3b4ad8c044 |
|
MD5 | 97dc94488a881383e76395d20a6a6810 |
|
BLAKE2b-256 | 1ca831f8800ddb13f1a2c46d49fb2a5a79aca2bc8e7dfd586210c28c8bf80cab |
File details
Details for the file django_smartspaceless-0.1.2-py2.py3-none-any.whl
.
File metadata
- Download URL: django_smartspaceless-0.1.2-py2.py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7bc695987652a25b10f573d5a8a103fa15f0bb703b26c549b3d12ed4ebed5f71 |
|
MD5 | 0fc3c0a0fe2cd069955b51be23f6c768 |
|
BLAKE2b-256 | 2bc2c206b8323511a23ead292f5a43e3f5d1efff91d2b64d6fbf69d736108975 |