Sha256: 9ffee59ff575832834117a6060bad21cf23f1ab6702ab9df811e1ac2026172ba
Contents?: true
Size: 619 Bytes
Versions: 48
Compression:
Stored size: 619 Bytes
Contents
# frozen_string_literal: true module OoxmlParser # Class for p:notes class PresentationNotes < OOXMLDocumentObject # @return [CommonSlideData] common slide data attr_reader :common_slide_data # Parse PresentationNotes object # @param file [String] file to parse # @return [PresentationNotes] result of parsing def parse(file) node = parse_xml(file) node.xpath('p:notes/*').each do |node_child| case node_child.name when 'cSld' @common_slide_data = CommonSlideData.new(parent: self).parse(node_child) end end self end end end
Version data entries
48 entries across 48 versions & 1 rubygems