Sha256: 4671100bd5ba5a3d6d63106364197e7f464601b5a9b1c25b93c784f0c74234cd
Contents?: true
Size: 944 Bytes
Versions: 40
Compression:
Stored size: 944 Bytes
Contents
# frozen_string_literal: true module OoxmlParser # Class for `groupChr` data class GroupChar < OOXMLDocumentObject attr_accessor :symbol, :position, :vertical_align, :element # Parse GroupChar object # @param node [Nokogiri::XML:Element] node to parse # @return [GroupChar] result of parsing def parse(node) node.xpath('*').each do |node_child| case node_child.name when 'groupChrPr' node_child.xpath('*').each do |node_child_child| case node_child_child.name when 'chr' @symbol = node_child_child.attribute('val').value when 'pos' @position = node_child_child.attribute('val').value when 'vertJc' @vertical_align = node_child_child.attribute('val').value end end end end @element = DocxFormula.new(parent: self).parse(node) self end end end
Version data entries
40 entries across 40 versions & 1 rubygems