Remove empty lines from HTML.
npm install @ryanburnette/html-remove-empty-lines

Remove empty lines from HTML.
- removes empty lines from HTML files
- does not damage formatting within tags
- cli helper takes a directory and runs recursively on all .html files
- WARNING cli helper updates files in place
Install globally with npm to use in your local environment.
``bash`
npm install -g @ryanburnette/html-remove-empty-lines
`bash`
html-remove-empty-lines public/
With npx, you can install to your project, but it's not required.
`bash`
npm install --save @ryanburnette/html-remove-empty-lines
`bash`
npx html-remove-empty-lines public/
You can also import the htmlRemoveEmtpyLines function to utilize it
programmatically.
`js``
var htmlRemoveEmptyLines = require('@ryanburnette/html-remove-empty-lines');
console.log(htmlRemoveEmptyLines('\n\n'));