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

Version Path
ooxml_parser-0.37.1 lib/ooxml_parser/xlsx_parser/workbook/shared_string_table/string_index.rb
ooxml_parser-0.37.0 lib/ooxml_parser/xlsx_parser/workbook/shared_string_table/string_index.rb
ooxml_parser-0.36.1 lib/ooxml_parser/xlsx_parser/workbook/shared_string_table/string_index.rb
ooxml_parser-0.36.0 lib/ooxml_parser/xlsx_parser/workbook/shared_string_table/string_index.rb
ooxml_parser-0.35.0 lib/ooxml_parser/xlsx_parser/workbook/shared_string_table/string_index.rb
ooxml_parser-0.34.2 lib/ooxml_parser/xlsx_parser/workbook/shared_string_table/string_index.rb
ooxml_parser-0.34.1 lib/ooxml_parser/xlsx_parser/workbook/shared_string_table/string_index.rb
ooxml_parser-0.34.0 lib/ooxml_parser/xlsx_parser/workbook/shared_string_table/string_index.rb
ooxml_parser-0.33.0 lib/ooxml_parser/xlsx_parser/workbook/shared_string_table/string_index.rb
ooxml_parser-0.32.0 lib/ooxml_parser/xlsx_parser/workbook/shared_string_table/string_index.rb
ooxml_parser-0.31.0 lib/ooxml_parser/xlsx_parser/workbook/shared_string_table/string_index.rb
ooxml_parser-0.30.0 lib/ooxml_parser/xlsx_parser/workbook/shared_string_table/string_index.rb
ooxml_parser-0.29.0 lib/ooxml_parser/xlsx_parser/workbook/shared_string_table/string_index.rb
ooxml_parser-0.28.0 lib/ooxml_parser/xlsx_parser/workbook/shared_string_table/string_index.rb
ooxml_parser-0.27.0 lib/ooxml_parser/xlsx_parser/workbook/shared_string_table/string_index.rb
ooxml_parser-0.26.0 lib/ooxml_parser/xlsx_parser/workbook/shared_string_table/string_index.rb
ooxml_parser-0.25.0 lib/ooxml_parser/xlsx_parser/workbook/shared_string_table/string_index.rb
ooxml_parser-0.24.0 lib/ooxml_parser/xlsx_parser/workbook/shared_string_table/string_index.rb
ooxml_parser-0.23.0 lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/shared_string_table/string_index.rb
ooxml_parser-0.22.0 lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/shared_string_table/string_index.rb