class OoxmlParser::LevelText
Class for storing Level Text
, ‘lvlText` tag
Attributes
@return [String] value of start
Public Instance Methods
Source
# File lib/ooxml_parser/docx_parser/document_structure/numbering/abstract_numbering/numbering_level/level_text.rb, line 12 def parse(node) node.attributes.each do |key, value| case key when 'val' @value = value.value.to_s end end self end
Parse LevelText
@param [Nokogiri::XML:Node] node with LevelText
@return [LevelText] result of parsing