jsoner icon indicating copy to clipboard operation
jsoner copied to clipboard

Serialize HTML tables into JSON in Ruby

Results 2 jsoner issues
Sort by recently updated
recently updated
newest added

If Jsoner parses an html file with multiple tables it returns the first one converted to json. Is there an easy way the tool could be extended to either return...

``` ruby # Do not need require 'open-uri' # remove open method # old table = Jsoner.parse(open('table.html')) # new table = Jsoner.parse('table.html') ```