Method: IsoDoc::HtmlFunction::Footnotes#make_table_footnote_link

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


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

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