Guest User

Untitled

a guest
Oct 22nd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. require 'nokogiri'
  2.  
  3. html = <<-EOS
  4. <!DOCTYPE html>
  5. <html>
  6. <head>
  7. <title>JRuby Nokogiri Test</title>
  8. </head>
  9. <body>
  10. <p>Test</p>
  11. </body>
  12. </html>
  13. EOS
  14.  
  15. doc = Nokogiri::HTML::Document.parse(html)
  16. puts doc.to_html
Add Comment
Please, Sign In to add comment