Input:
{% htmlcompress %}
<style>
.foo {
--a: 1em;
padding: var(--a);
color: blue;
}
</style>
{% endhtmlcompress %}
Expected output:
<style>.foo {--a: 1em;padding: var(--a);color: blue;}</style>
Actual output:
<style>.foo {--a: 1em;color: blue;}</style>