Module: Mml::Base::Maligngroup
- Included in:
- V2::Maligngroup, V3::Maligngroup, V4::Maligngroup
- Defined in:
- lib/mml/base/maligngroup.rb
Class Method Summary collapse
-
.included(klass) ⇒ Object
NOTE: class_eval resolves constants in module’s lexical scope.
Class Method Details
.included(klass) ⇒ Object
NOTE: class_eval resolves constants in module’s lexical scope. Use fully qualified names (e.g., Mml::Namespace).
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/mml/base/maligngroup.rb', line 8 def self.included(klass) klass.class_eval do attribute :mathcolor, :string attribute :mathbackground, :string attribute :groupalign, :string xml do namespace Mml::Namespace element "maligngroup" map_attribute "mathcolor", to: :mathcolor map_attribute "mathbackground", to: :mathbackground map_attribute "groupalign", to: :groupalign end end end |