- Does it preserve inline attributes order?
- Yes — attributes stay in source order so git diffs stay clean. If you want attributes sorted alphabetically, use HTML Pretty Print which has that option.
- Will it break my script or style blocks?
- No. Content inside `<script>`, `<style>`, and `<pre>` is left untouched — only the outer HTML indentation changes.
- Does the formatter validate my HTML?
- No. For validation use the HTML Validator. The formatter indents even invalid HTML — useful for inspecting broken templates.
- Can I minify in the same tool?
- Separate tools by design. Use HTML Minify to collapse whitespace; use HTML Formatter to expand it. This keeps each tool's output predictable.