Method: IsoDoc::Function::Table#make_table_attr

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

#make_table_attr(node) ⇒ Object



45
46
47
48
49
50
51
52
# File 'lib/isodoc/function/table.rb', line 45

def make_table_attr(node)
  attr_code(
    id: node["id"],
    class: "MsoISOTable",
    style: "border-width:1px;border-spacing:0;",
    title: node["alt"]
  )
end