Sha256: eab001fae0a7d466edc2bf2cc4014070af0055390e52cb4d1e0493ca4e6e8ba8
Contents?: true
Size: 795 Bytes
Versions: 40
Compression:
Stored size: 795 Bytes
Contents
# frozen_string_literal: true module OoxmlParser # Single Comment of XLSX class ExcelComment < OOXMLDocumentObject attr_accessor :characters # @return [String] text of comment attr_reader :text def initialize(parent: nil) @characters = [] super end # Parse ExcelComment object # @param node [Nokogiri::XML:Element] node to parse # @return [ExcelComment] result of parsing def parse(node) node.xpath('xmlns:text/xmlns:r').each do |node_child| @characters << ParagraphRun.new(parent: self).parse(node_child) end node.xpath('xmlns:text/*').each do |node_child| case node_child.name when 't' @text = Text.new(parent: self).parse(node_child) end end self end end end
Version data entries
40 entries across 40 versions & 1 rubygems