Class: OoxmlParser::MathRun
- Inherits:
-
OOXMLDocumentObject
- Object
- OOXMLDocumentObject
- OoxmlParser::MathRun
- Defined in:
- lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/docx_formula/math_run.rb
Overview
Class for parsing ‘m:r` object
Instance Attribute Summary collapse
-
#properties ⇒ MathRunProperties
Properties of run.
-
#text ⇒ String
Text of formula.
Attributes inherited from OOXMLDocumentObject
Instance Method Summary collapse
-
#parse(node) ⇒ MathRun
Parse MathRun.
Methods inherited from OOXMLDocumentObject
#==, #boolean_attribute_value, #initialize, #parse_xml, #with_data?
Methods included from OoxmlObjectAttributeHelper
#attribute_enabled?, #option_enabled?
Methods included from OoxmlDocumentObjectHelper
Constructor Details
This class inherits a constructor from OoxmlParser::OOXMLDocumentObject
Instance Attribute Details
#properties ⇒ MathRunProperties
Returns properties of run.
8 9 10 |
# File 'lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/docx_formula/math_run.rb', line 8 def properties @properties end |
#text ⇒ String
Returns text of formula.
10 11 12 |
# File 'lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/docx_formula/math_run.rb', line 10 def text @text end |
Instance Method Details
#parse(node) ⇒ MathRun
Parse MathRun
15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/docx_formula/math_run.rb', line 15 def parse(node) node.xpath('*').each do |math_run_child| case math_run_child.name when 'rPr' @properties = MathRunProperties.new(parent: self).parse(math_run_child) when 't' @text = math_run_child.text end end self end |