Sha256: 7004b8ba4b28fab2a98de709a30eabfbb3e2a1aafac468fc9220e10dbe40a8cf
Contents?: true
Size: 1.24 KB
Versions: 3
Compression:
Stored size: 1.24 KB
Contents
module IsoDoc module Ietf class RfcConvert < ::IsoDoc::Convert def table_attrs(node) attr_code(anchor: node["id"], align: node["align"]) end def table_parse(node, out) @in_table = true out.table **table_attrs(node) do |t| table_title_parse(node, out) thead_parse(node, t) tbody_parse(node, t) tfoot_parse(node, t) end (dl = node.at(ns("./dl"))) && parse(dl, out) node.xpath(ns("./note")).each { |n| parse(n, out) } @in_table = false end def table_title_parse(node, out) name = node.at(ns("./name")) || return out.name do |p| name.children.each { |n| parse(n, p) } end end def tr_parse(node, out, ord, totalrows, header) out.tr do |r| node.elements.each do |td| attrs = make_tr_attr(td, ord, totalrows - 1, header) r.send td.name, **attrs do |entry| td.children.each { |n| parse(n, entry) } end end end end def make_tr_attr(cell, _row, _totalrows, _header) attr_code(rowspan: cell["rowspan"], colspan: cell["colspan"], align: cell["align"]) end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
metanorma-ietf-3.1.4 | lib/isodoc/ietf/table.rb |
metanorma-ietf-3.1.3 | lib/isodoc/ietf/table.rb |
metanorma-ietf-3.1.2 | lib/isodoc/ietf/table.rb |