Method: IsoDoc::WordFunction::Footnotes#make_table_footnote_link

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


9
10
11
12
13
14
# File 'lib/isodoc/word_function/footnotes.rb', line 9

def make_table_footnote_link(out, fnid, fnref)
  attrs = { href: "##{fnid}", class: "TableFootnoteRef" }
  out.a **attrs do |a|
    a << fnref
  end
end