Method: IsoDoc::PresentationXMLConvert#clause

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

#clause(docxml) ⇒ Object



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

def clause(docxml)
  docxml.xpath(ns("//clause | "\
                  "//terms | //definitions | //references"))
    .each do |f|
    clause1(f)
  end
end