jdrouet / mrml

Implementation of mjml in rust
MIT License
344 stars 22 forks source link

fix(mrml-core): only void element should self close #407

Closed jdrouet closed 5 months ago

jdrouet commented 5 months ago

div is not a void element according to mdn so it should not self close. With this fix, we only self close elements that are void elements.

Fixes #406