Sha256: e8923de27d949507693f60745805eb4ce1f1b23e99e85282aa133abfa56d1449
Contents?: true
Size: 673 Bytes
Versions: 48
Compression:
Stored size: 673 Bytes
Contents
# frozen_string_literal: true module OoxmlParser # Class for parsing string index `si` tag class StringIndex < OOXMLDocumentObject # @return [ParagraphRun] run of text attr_reader :run # @return [String] text attr_reader :text # Parse StringIndex data # @param [Nokogiri::XML:Element] node with StringIndex data # @return [StringIndex] value of StringIndex data def parse(node) node.xpath('*').each do |node_child| case node_child.name when 't' @text = node_child.text when 'r' @run = ParagraphRun.new(parent: self).parse(node_child) end end self end end end
Version data entries
48 entries across 48 versions & 1 rubygems