Now, if someone could tell me how to use it within PHP...
My company created an open-source HTML-diffing PHP package[0] that could be considerably improved by replacing the old Tidy with the HTML5 Tidy (if I only knew how!)
I wrote a ruby gem that wraps the HTML tidy executable for local HTML validation. Disclaimer: It is vetted with the HTML 5 compatible tidy version, but I haven't tried it out with this new version yet. Pull requests welcome.
The one thing I find missing on the site is, when would I use it? What benefit or problem is it solving?
Can anyone share when they've found this to be useful? For example, does it compress HTML for faster page loads, or fix invalid HTML (e.g. from wysiwyg editors).
tidy is a swiss army knife for HTML and XML... it does the things you said and a lot more.
Pretty printing, switching encodings, conversions between HTML/XHTML, validation, removing those stupid quotation marks that MS Word litters all over the place in its vain attempt to ruin the universe... many annoying problems with HTML are easily solved with tidy
It comes from the early web when scraping web pages was a thing. Html is not always clean, missing end tags, cross nested tags, invalid tags, misused tags or you need xhtml/xml compatible html so you can do xpath/xslt on it.
13 comments
[ 3.2 ms ] story [ 35.2 ms ] threadPlease include examples of files cleaned with the tool.
Recently went to check, after a >1 decade break. The man page is 5000 words, tons and tons and tons of options. No tabs though.
Edit: apparently this feature got added last May! Just waiting on my distro now. Sweet! https://github.com/htacg/tidy-html5/issues/108
My company created an open-source HTML-diffing PHP package[0] that could be considerably improved by replacing the old Tidy with the HTML5 Tidy (if I only knew how!)
[0] https://github.com/gathercontent/htmldiff
https://github.com/gathercontent/htmldiff/blob/master/compos...
http://php.net/manual/en/book.tidy.php
https://github.com/ericbeland/html_validation
Can anyone share when they've found this to be useful? For example, does it compress HTML for faster page loads, or fix invalid HTML (e.g. from wysiwyg editors).
Pretty printing, switching encodings, conversions between HTML/XHTML, validation, removing those stupid quotation marks that MS Word litters all over the place in its vain attempt to ruin the universe... many annoying problems with HTML are easily solved with tidy