Method: IsoDoc::PresentationXMLConvert#source
- Defined in:
- lib/isodoc/presentation_function/block.rb
#source(docxml) ⇒ Object
157 158 159 160 161 162 163 |
# File 'lib/isodoc/presentation_function/block.rb', line 157 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 |