Ruby nokigiri

From wikinotes
Revision as of 17:16, 1 April 2020 by Will (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

nokigiri is an html parser

Documentation

website https://nokogiri.org/
require 'nokigiri'

html = '<html><title>foo</title></html>
doc = Nokigiri::HTML.parse(html)