Sha256: a23f6d79de7072ef7ff6688544600da298a282612124fa22d4ea3b57e49a9e00
Contents?: true
Size: 710 Bytes
Versions: 40
Compression:
Stored size: 710 Bytes
Contents
# frozen_string_literal: true module OoxmlParser # Class for parsing `txBody` tags class TextBody < OOXMLDocumentObject attr_accessor :properties, :paragraphs def initialize(parent: nil) @paragraphs = [] super end # Parse TextBody object # @param node [Nokogiri::XML:Element] node to parse # @return [TextBody] result of parsing def parse(node) node.xpath('*').each do |node_child| case node_child.name when 'p' @paragraphs << Paragraph.new(parent: self).parse(node_child) when 'bodyPr' @properties = OOXMLShapeBodyProperties.new(parent: self).parse(node_child) end end self end end end
Version data entries
40 entries across 40 versions & 1 rubygems