Created
November 29, 2010 08:44
-
-
Save laurynas/719741 to your computer and use it in GitHub Desktop.
Fix invalid html using Nokogiri
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Close unclosed tags | |
def fix_invalid_html(html) | |
Nokogiri::HTML::DocumentFragment.parse(html).to_html | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment