Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
django-smartspaceless
Advanced tools
A Django template tag application for minifying block-level HTML elements only
Django Smart Spaceless
|PyPI version|_ |Build status|_
.. |PyPI version| image:: https://badge.fury.io/py/django-smartspaceless.svg .. _PyPI version: https://pypi.python.org/pypi/django-smartspaceless
.. |Build status| image:: https://travis-ci.org/richardcornish/django-smartspaceless.svg?branch=master .. _Build status: https://travis-ci.org/richardcornish/django-smartspaceless
Django Smart Spaceless is a Django <https://www.djangoproject.com/>
_ template tag <https://docs.djangoproject.com/en/1.11/howto/custom-template-tags/>
_ 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 <https://github.com/cobrateam/django-htmlmin>
project to be used as a template tag.
.. |spaceless| replace:: spaceless
.. _spaceless: https://docs.djangoproject.com/en/1.11/ref/templates/builtins/#spaceless
Package distribution <https://pypi.python.org/pypi/django-smartspaceless>
_Code repository <https://github.com/richardcornish/django-smartspaceless>
_Documentation <https://django-smartspaceless.readthedocs.io/>
_Tests <https://travis-ci.org/richardcornish/django-smartspaceless>
_.. code-block:: bash
$ pip install django-smartspaceless
Add to settings.py
.
.. code-block:: python
INSTALLED_APPS = [ # ... 'smartspaceless', ]
.. code-block:: django
{% load smartspaceless_tags %}
{% smartspaceless %}
{% endsmartspaceless %}Result:
.. code-block:: html
The space between <a href="#">Link 2</a>
and <a href="#">Link 3</a>
is preserved. Removing that space would be bad.
Please note that django-htmlmin <https://github.com/cobrateam/django-htmlmin>
_ by default uses the html5lib <https://github.com/html5lib/html5lib-python>
_ 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 <https://www.crummy.com/software/BeautifulSoup/bs4/doc/#installing-a-parser>
_, the HTML parser in Python's standard library, which does not alter HTML fragments.
FAQs
A Django template tag application for minifying block-level HTML elements only
We found that django-smartspaceless demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.