Sha256: 7fb5a05b34dd97828158511c3475307bbf4f3d6d47af36c246563a09fa8f3b06
Contents?: true
Size: 617 Bytes
Versions: 48
Compression:
Stored size: 617 Bytes
Contents
# frozen_string_literal: true module OoxmlParser # Class for parsing `w:rPrDefault` tags class RunPropertiesDefault < OOXMLDocumentObject # @return [RunProperties] properties of run attr_accessor :run_properties # Parse RunPropertiesDefault object # @param node [Nokogiri::XML:Element] node to parse # @return [RunPropertiesDefault] result of parsing def parse(node) node.xpath('*').each do |node_child| case node_child.name when 'rPr' @run_properties = RunProperties.new(parent: self).parse(node_child) end end self end end end
Version data entries
48 entries across 48 versions & 1 rubygems