I'm currently using the RubyTidy Ruby bindings for HTML tidy to make sure HTML I receive is well-formed. Currently this library is the only thing holding me back from getting a Rails application on Ruby 1.9. Are there any alternative libraries out there that will tidy up chunks of HTML on Ruby 1.9?
|
feedback
|
|
I am using Nokogiri to fix invalid html: Nokogiri::HTML::DocumentFragment.parse(html).to_html | |||||
feedback
|
|
http://github.com/libc/tidy_ffi/blob/master/README.rdoc works with ruby 1.9 (latest version) If you are working on windows, you need to set the library_path eg
(It uses the same dll as tidy) The above links gives you more example of the usage. | ||||
|
feedback
|
|
Here is a nice example of how to make your html look better using tidy:
For more tidy options, check out the man page. | |||
feedback
|
Watch out, the Ruby Tidy bindings have some nasty memory leaks. It's currently unusable in long running processes. (for the record, I'm using http://github.com/ak47/tidy) I just had to remove it from a production Rails 2.3 application because it was leaking about 1MB/min. | |||
|
feedback
|