Method: IsoDoc::PresentationXMLConvert#source

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

#source(docxml) ⇒ Object



201
202
203
204
205
206
207
# File 'lib/isodoc/presentation_function/block.rb', line 201

def source(docxml)
  docxml.xpath(ns("//source/modification")).each do |f|
    source_modification(f)
  end
  docxml.xpath(ns("//table/source")).each { |f| tablesource(f) }
  docxml.xpath(ns("//figure/source")).each { |f| figuresource(f) }
end