Djhtml

Latest version: v3.0.7

Safety actively analyzes 723799 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 2 of 6

3.0.1

This release fixes a DjCSS bug that was kindly reported by GitRon moments after 3.0.0 was released.

What's Changed

* Fix incorrect CSS string detection by JaapJoris in https://github.com/rtts/djhtml/commit/3cb16e1d63aa3c4578828574567018b6fdbe40e1

**Full Changelog**: https://github.com/rtts/djhtml/compare/3.0.0...3.0.1

3.0.0

This major new release fixes *all outstanding bugs in DjHTML* :partying_face:

There are no backwards-incompatible changes in the usage of DjHTML, but the indentation it produces has been improved significantly. Here is an overview of all the things that changed:


Support for Python 3.6 and 3.7 has been dropped

Sorry folks, but these Python versions are now so old it's time to drop support. If you're forced by whatever reason to use Python 3.6 or 3.7, please use DjHTML version 2 or older because they still work fine (minus all the improvements this release brings, of course).


New multiline HTML element indentation

The long-standing issue 50 has finally been solved! DjHTML not only carefully aligns the attributes of multi-line HTML elements, it even aligns the contents of multi-line attribute values! The README now starts with this very appropriate example:

jinja
<blockquote cite="Guido Van Rossum"
style="font-style: italic;
{% if dark_mode %}
background: black;
{% endif %}
">
Don't you hate code that's not properly indented?
</blockquote>


Thanks again adamchainz for reporting this issue, and also for your other contributions :pray:


Both opening and closing comment tags are now ignored

Previous versions of DjHTML indented the opening tag, but not the closing tag of comments, which resulted in ugliness like this:

jinja
<div>
<p>
{ ╔══════════════════════════╗
║ Carefully laid out table ║
╚══════════════════════════╝ }
</p>
</div>


Now, DjHTML completely leaves comments alone.


Improved CSS and JS multi-line statements

Not just multi-line HTML elements have improved, also multi-line CSS statements (74) and multi-line JS expressions (59) have been improved thanks to new handling of relative and absolute offsets. There have been too many improvements to list here, but if you're curious about the indentation rules, check out the files in the [test suite](https://github.com/rtts/djhtml/tree/main/tests/suite) to see how they are indented.


Improved unittests

Speaking of the test suite, the unformatted `*.in` files have been removed in favor of tracking new `*.tokens` files that contain the exact internal representation of all available source files. This will help to identify bugs more easily and will guard against unintended changes to the way source is tokenized, even if those changes do not affect the indentation.

In addition to the unittests, DjHTML has been tested thoroughly by running it over many open source codebases such as [Django](https://github.com/django/django), [Sentry](https://github.com/getsentry/sentry), [Readthedocs](https://github.com/readthedocs/readthedocs.org), and of course the awesome [Wagtail](https://github.com/wagtail/wagtail). This helped to identify a number of new bugs that have all been fixed as well.


Welcoming to contributors

One thing that hasn't changed is our openness to your contributions. We'd like to thank everyone for reporting bugs and suggesting improvements, and we'd like to encourage you to keep doing so. Without your help DjHTML wouldn't be as awesome as it is now!


New Contributors

* jnns made their first contribution in https://github.com/rtts/djhtml/pull/73


Full Changelog

https://github.com/rtts/djhtml/compare/v2.0.0...3.0.0

2.0.0

Happy new year everyone! This release bumps the major version number to 2 because there has been a backwards-incompatible change: the `-i` command line option has been removed, because modifying files in-place is now the default.

If you have a custom pre-commit configuration with an `entry` key such as the following:


repos:
- repo: https://github.com/rtts/djhtml
rev: v2.0.0
hooks:
- id: djhtml
entry: djhtml -i --tabwith 2


Please remove the `-i` argument for it to keep working as before:


repos:
- repo: https://github.com/rtts/djhtml
rev: v2.0.0
hooks:
- id: djhtml
entry: djhtml --tabwith 2


Removing this argument not only made sense because modifying files is DjHTML's main use case, but also because it makes DjHTML more compatible with Windows (see 69). A big thanks to GitRon and spapas for figuring this out!

Note that otherwise the indentation algorithm is exactly the same. Also note that there are 2 known bugs in this algorithm: 50 and 59. We still need help to solve them. Feel free to submit your PRs and get them published in the next release!


What's Changed
* Remove `-i` and `-o` command line options by JaapJoris in https://github.com/rtts/djhtml/pull/71


**Full Changelog**: https://github.com/rtts/djhtml/compare/v1.5.2...v2.0.0

1.5.2

What's Changed
* Support passing directories as command-line arguments by pgjones in https://github.com/rtts/djhtml/pull/64

New Contributors
* pgjones made their first contribution in https://github.com/rtts/djhtml/pull/64

**Full Changelog**: https://github.com/rtts/djhtml/compare/v1.5.1...v1.5.2

1.5.1

What's Changed
* Upgrade Black by rupertbaker in https://github.com/rtts/djhtml/pull/63
* Fix interpretation of closing arrows in HTML attrs by rupertbaker in https://github.com/rtts/djhtml/pull/62

New Contributors
* rupertbaker made their first contribution in https://github.com/rtts/djhtml/pull/63

**Full Changelog**: https://github.com/rtts/djhtml/compare/v1.5.0...v1.5.1

1.5.0

What's Changed

The behavior regarding final newlines has changed between DjHTML v1.4.14 and v1.5.0. It used to always append the final newline, but now this will only happen when the source file already contains a final newline.

See https://github.com/rtts/djhtml/issues/56 for the discussion that led to this change.

If you still need the old behavior, the best option is to use https://github.com/pre-commit/pre-commit-hooks#end-of-file-fixer by adding the following to your `.pre-commit-config.yaml`:

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: main replace with the latest tag on GitHub
hooks:
- id: end-of-file-fixer

New Contributors
* thibaudcolas pointed out the inconsistent behavior in appending final newlines

**Full Changelog**: https://github.com/rtts/djhtml/compare/v1.4.14...v1.5.0

Page 2 of 6

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.