Method: IsoDoc::HtmlFunction::Html#table_attrs

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

#table_attrs(node) ⇒ Object



95
96
97
98
99
# File 'lib/isodoc/html_function/html.rb', line 95

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