Method: IsoDoc::PresentationXMLConvert#references

Defined in:
lib/isodoc/presentation_function/refs.rb

#references(docxml) ⇒ Object



3
4
5
6
7
8
9
10
11
12
# File 'lib/isodoc/presentation_function/refs.rb', line 3

def references(docxml)
  bibliography_bibitem_number(docxml)
  renderings = references_render(docxml)
  docxml.xpath(ns("//references/bibitem")).each do |x|
    bibitem(x, renderings)
  end
  hidden_items(docxml)
  move_norm_ref_to_sections(docxml)
  @xrefs.parse_inclusions(refs: true).parse(docxml)
end