j4w8n / htmlfy

prettify, minify html - and more!
MIT License
5 stars 1 forks source link

If second-to-last tag is a void element, the last tag does not wrap to a new line. #1

Closed j4w8n closed 10 months ago

j4w8n commented 10 months ago

Given this code

const pretty = prettify('<main><div>Hello World</div><input></main>')

The results is

<main>
  <div>Hello World</div>
  <input /></main>