Method: IsoDoc::HtmlFunction::Html#table_attrs

Defined in:
lib/isodoc/html_function/html.rb

#table_attrs(node) ⇒ Object



97
98
99
100
101
# File 'lib/isodoc/html_function/html.rb', line 97

def table_attrs(node)
  ret = super
  node.at(ns("./colgroup")) and ret[:style] += "table-layout:fixed;"
  ret
end