Method: IsoDoc::PresentationXMLConvert#docid_prefixes

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

#docid_prefixes(docxml) ⇒ Object



3
4
5
6
7
# File 'lib/isodoc/presentation_function/docid.rb', line 3

def docid_prefixes(docxml)
  docxml.xpath(ns("//references/bibitem/docidentifier")).each do |i|
    i.children = docid_prefix(i["type"], to_xml(i.children))
  end
end