yoshuawuyts / html

Type-safe HTML support for Rust
Apache License 2.0
244 stars 7 forks source link

Fix indentation of <pre> tags #58

Closed yoshuawuyts closed 1 year ago

yoshuawuyts commented 1 year ago

Closes #40. Supersedes #42. Fixes formatting of <pre> elements.

For simplicity I'm choosing to just tackle pre elements since formatting is important there. If we need a more generalized solution we can always do something later. I believe this should take care of the majority use case.

Thanks to @jdonszelmann for tracking down this issue and doing the first PR pass on this!