Method: IsoDoc::WordFunction::Footnotes#make_table_footnote_target

Defined in:
lib/isodoc/word_function/footnotes.rb

#make_table_footnote_target(out, fnid, fnref) ⇒ Object



16
17
18
19
20
21
22
# File 'lib/isodoc/word_function/footnotes.rb', line 16

def make_table_footnote_target(out, fnid, fnref)
  attrs = { id: fnid, class: "TableFootnoteRef" }
  out.a **attrs do |a|
    a << fnref
    insert_tab(a, 1)
  end
end