Method: IsoDoc::Function::Table#tcaption

Defined in:
lib/isodoc/function/table.rb

#tcaption(node, table) ⇒ Object



56
57
58
59
60
61
62
63
64
# File 'lib/isodoc/function/table.rb', line 56

def tcaption(node, table)
  return unless node["summary"]

  table.caption do |c|
    c.span style: "display:none" do |s|
      s << node["summary"]
    end
  end
end