Method: Bookify::Node::Table#table_data
- Defined in:
- lib/bookify/node/table.rb
#table_data ⇒ Object
26 27 28 29 30 31 32 |
# File 'lib/bookify/node/table.rb', line 26 def table_data node.css("tr").map do |tr| tr.css("th, td").map do |td| decode_html(td.inner_html.strip) end end end |