What's Changed
* permitted duplicate attributes in DTL by wrabit in https://github.com/wrabit/django-cotton/pull/57
pedroven identified an [issue](55) where the loader was not allowing us to use Django template expressions to govern whole attributes inside html elements. This was due to the compilation where BS4 cleanses HTML removing duplicate attributes adhering to [html spec](https://html.spec.whatwg.org/multipage/syntax.html#attributes-2):
> There must never be two or more attributes on the same start tag whose names are an [ASCII case-insensitive](https://infra.spec.whatwg.org/#ascii-case-insensitive) match for each other.
Since our target is not HTML, but Django Template Language, this behaviour is not desirable, we now manage this in the Cotton Compiler.
**Full Changelog**: https://github.com/wrabit/django-cotton/compare/v0.9.18...v0.9.19