Method: IsoDoc::Function::Table#tcaption
- Defined in:
- lib/isodoc/function/table.rb
#tcaption(node, t) ⇒ Object
52 53 54 55 56 57 58 59 |
# File 'lib/isodoc/function/table.rb', line 52 def tcaption(node, t) return unless node["summary"] t.caption do |c| c.span **{ style: "display:none" } do |s| s << node["summary"] end end end |