Class: OoxmlParser::MathParagraph
- Inherits:
-
OOXMLDocumentObject
- Object
- OOXMLDocumentObject
- OoxmlParser::MathParagraph
- Defined in:
- lib/ooxml_parser/common_parser/common_data/alternate_content/alternate_content/choice/math_text/math_paragraph.rb
Overview
Class for storing math paragraph
Instance Attribute Summary collapse
-
#math ⇒ Object
Returns the value of attribute math.
Attributes inherited from OOXMLDocumentObject
Instance Method Summary collapse
-
#parse(node) ⇒ MathParagraph
Parse MathParagraph object.
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
#math ⇒ Object
Returns the value of attribute math.
6 7 8 |
# File 'lib/ooxml_parser/common_parser/common_data/alternate_content/alternate_content/choice/math_text/math_paragraph.rb', line 6 def math @math end |
Instance Method Details
#parse(node) ⇒ MathParagraph
Parse MathParagraph object
11 12 13 14 15 16 17 18 19 |
# File 'lib/ooxml_parser/common_parser/common_data/alternate_content/alternate_content/choice/math_text/math_paragraph.rb', line 11 def parse(node) node.xpath('*').each do |node_child| case node_child.name when 'oMath' @math = DocxFormula.new(parent: self).parse(node_child) end end self end |