Method: IsoDoc::PresentationXMLConvert#annex

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

#annex(docxml) ⇒ Object



42
43
44
45
46
47
48
49
# File 'lib/isodoc/presentation_function/section.rb', line 42

def annex(docxml)
  docxml.xpath(ns("//annex")).each do |f|
    @xrefs.klass.single_term_clause?(f) and single_term_clause_retitle(f)
    annex1(f)
    @xrefs.klass.single_term_clause?(f) and single_term_clause_unnest(f)
  end
  @xrefs.parse_inclusions(clauses: true).parse(docxml)
end