Sha256: 26f5eb189c8cacb85736505a58d0ff75db513d88f6fc3c6a634b9d8980f72baf
Contents?: true
Size: 659 Bytes
Versions: 40
Compression:
Stored size: 659 Bytes
Contents
# frozen_string_literal: true module OoxmlParser # Class for parsing `w:pPrDefault` tags class ParagraphPropertiesDefault < OOXMLDocumentObject # @return [ParagraphProperties] properties of run attr_accessor :paragraph_properties # Parse ParagraphPropertiesDefault object # @param node [Nokogiri::XML:Element] node to parse # @return [ParagraphPropertiesDefault] result of parsing def parse(node) node.xpath('*').each do |node_child| case node_child.name when 'pPr' @paragraph_properties = ParagraphProperties.new(parent: self).parse(node_child) end end self end end end
Version data entries
40 entries across 40 versions & 1 rubygems