Sha256: d74b05825c2a84091cb8e4f459e88c89b22f17f521ab4a7159c23a50f9c732bb
Contents?: true
Size: 786 Bytes
Versions: 45
Compression:
Stored size: 786 Bytes
Contents
# frozen_string_literal: true require_relative 'shape/old_docx_shape' require_relative 'shape/old_docx_shape_fill' require_relative 'group/old_docx_group' module OoxmlParser # Fallback DOCX Picture class OldDocxPicture < OOXMLDocumentObject attr_accessor :data, :type # Parse OldDocxPicture object # @param node [Nokogiri::XML:Element] node to parse # @return [OldDocxPicture] result of parsing def parse(node) node.xpath('*').each do |node_child| case node_child.name when 'shape' @type = :shape @data = OldDocxShape.new(parent: self).parse(node_child) when 'group' @type = :group @data = OldDocxGroup.new(parent: self).parse(node_child) end end self end end end
Version data entries
45 entries across 45 versions & 1 rubygems