mml 2.1.0 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (151) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop_todo.yml +14 -22
  3. data/README.adoc +205 -153
  4. data/lib/mml/v3/common_attributes.rb +22 -0
  5. data/lib/mml/v3/configuration.rb +105 -0
  6. data/lib/mml/v3/maction.rb +22 -0
  7. data/lib/mml/v3/maligngroup.rb +20 -0
  8. data/lib/mml/v3/malignmark.rb +20 -0
  9. data/lib/mml/v3/math.rb +20 -0
  10. data/lib/mml/v3/menclose.rb +21 -0
  11. data/lib/mml/v3/merror.rb +19 -0
  12. data/lib/mml/v3/mfenced.rb +28 -0
  13. data/lib/mml/v3/mfrac.rb +27 -0
  14. data/lib/mml/v3/mfraction.rb +27 -0
  15. data/lib/mml/v3/mglyph.rb +46 -0
  16. data/lib/mml/v3/mi.rb +38 -0
  17. data/lib/mml/v3/mlabeledtr.rb +31 -0
  18. data/lib/mml/v3/mlongdiv.rb +25 -0
  19. data/lib/mml/v3/mmultiscripts.rb +27 -0
  20. data/lib/mml/v3/mn.rb +38 -0
  21. data/lib/mml/v3/mo.rb +86 -0
  22. data/lib/mml/v3/mover.rb +23 -0
  23. data/lib/mml/v3/mpadded.rb +29 -0
  24. data/lib/mml/v3/mphantom.rb +19 -0
  25. data/lib/mml/v3/mprescripts.rb +18 -0
  26. data/lib/mml/v3/mroot.rb +19 -0
  27. data/lib/mml/v3/mrow.rb +25 -0
  28. data/lib/mml/v3/ms.rb +43 -0
  29. data/lib/mml/v3/mscarries.rb +27 -0
  30. data/lib/mml/v3/mscarry.rb +23 -0
  31. data/lib/mml/v3/msgroup.rb +25 -0
  32. data/lib/mml/v3/msline.rb +28 -0
  33. data/lib/mml/v3/mspace.rb +58 -0
  34. data/lib/mml/v3/msqrt.rb +19 -0
  35. data/lib/mml/v3/msrow.rb +21 -0
  36. data/lib/mml/v3/mstack.rb +27 -0
  37. data/lib/mml/v3/mstyle.rb +211 -0
  38. data/lib/mml/v3/msub.rb +21 -0
  39. data/lib/mml/v3/msubsup.rb +23 -0
  40. data/lib/mml/v3/msup.rb +21 -0
  41. data/lib/mml/v3/mtable.rb +61 -0
  42. data/lib/mml/v3/mtd.rb +23 -0
  43. data/lib/mml/v3/mtext.rb +38 -0
  44. data/lib/mml/v3/mtr.rb +29 -0
  45. data/lib/mml/v3/munder.rb +25 -0
  46. data/lib/mml/v3/munderover.rb +25 -0
  47. data/lib/mml/v3/namespace.rb +10 -0
  48. data/lib/mml/v3/none.rb +18 -0
  49. data/lib/mml/v3/semantics.rb +19 -0
  50. data/lib/mml/v3/version.rb +7 -0
  51. data/lib/mml/v3.rb +85 -0
  52. data/lib/mml/v4/a.rb +31 -0
  53. data/lib/mml/v4/common_attributes.rb +26 -0
  54. data/lib/mml/v4/configuration.rb +106 -0
  55. data/lib/mml/v4/maction.rb +30 -0
  56. data/lib/mml/v4/maligngroup.rb +28 -0
  57. data/lib/mml/v4/malignmark.rb +28 -0
  58. data/lib/mml/v4/math.rb +27 -0
  59. data/lib/mml/v4/menclose.rb +29 -0
  60. data/lib/mml/v4/merror.rb +27 -0
  61. data/lib/mml/v4/mfenced.rb +36 -0
  62. data/lib/mml/v4/mfrac.rb +35 -0
  63. data/lib/mml/v4/mfraction.rb +31 -0
  64. data/lib/mml/v4/mglyph.rb +46 -0
  65. data/lib/mml/v4/mi.rb +41 -0
  66. data/lib/mml/v4/mlabeledtr.rb +34 -0
  67. data/lib/mml/v4/mlongdiv.rb +29 -0
  68. data/lib/mml/v4/mmultiscripts.rb +35 -0
  69. data/lib/mml/v4/mn.rb +40 -0
  70. data/lib/mml/v4/mo.rb +86 -0
  71. data/lib/mml/v4/mover.rb +31 -0
  72. data/lib/mml/v4/mpadded.rb +37 -0
  73. data/lib/mml/v4/mphantom.rb +27 -0
  74. data/lib/mml/v4/mprescripts.rb +22 -0
  75. data/lib/mml/v4/mroot.rb +27 -0
  76. data/lib/mml/v4/mrow.rb +31 -0
  77. data/lib/mml/v4/ms.rb +45 -0
  78. data/lib/mml/v4/mscarries.rb +31 -0
  79. data/lib/mml/v4/mscarry.rb +27 -0
  80. data/lib/mml/v4/msgroup.rb +29 -0
  81. data/lib/mml/v4/msline.rb +32 -0
  82. data/lib/mml/v4/mspace.rb +60 -0
  83. data/lib/mml/v4/msqrt.rb +27 -0
  84. data/lib/mml/v4/msrow.rb +29 -0
  85. data/lib/mml/v4/mstack.rb +35 -0
  86. data/lib/mml/v4/mstyle.rb +197 -0
  87. data/lib/mml/v4/msub.rb +29 -0
  88. data/lib/mml/v4/msubsup.rb +31 -0
  89. data/lib/mml/v4/msup.rb +29 -0
  90. data/lib/mml/v4/mtable.rb +66 -0
  91. data/lib/mml/v4/mtd.rb +31 -0
  92. data/lib/mml/v4/mtext.rb +40 -0
  93. data/lib/mml/v4/mtr.rb +36 -0
  94. data/lib/mml/v4/munder.rb +33 -0
  95. data/lib/mml/v4/munderover.rb +33 -0
  96. data/lib/mml/v4/namespace.rb +10 -0
  97. data/lib/mml/v4/none.rb +22 -0
  98. data/lib/mml/v4/opal_setup.rb.erb +6 -0
  99. data/lib/mml/v4/semantics.rb +23 -0
  100. data/lib/mml/v4/version.rb +7 -0
  101. data/lib/mml/v4.rb +81 -0
  102. data/lib/mml/version.rb +1 -1
  103. data/lib/mml.rb +24 -90
  104. metadata +101 -49
  105. data/lib/mml/common_attributes.rb +0 -21
  106. data/lib/mml/configuration.rb +0 -103
  107. data/lib/mml/maction.rb +0 -20
  108. data/lib/mml/maligngroup.rb +0 -18
  109. data/lib/mml/malignmark.rb +0 -18
  110. data/lib/mml/math.rb +0 -18
  111. data/lib/mml/menclose.rb +0 -19
  112. data/lib/mml/merror.rb +0 -17
  113. data/lib/mml/mfenced.rb +0 -26
  114. data/lib/mml/mfrac.rb +0 -25
  115. data/lib/mml/mfraction.rb +0 -25
  116. data/lib/mml/mglyph.rb +0 -44
  117. data/lib/mml/mi.rb +0 -36
  118. data/lib/mml/mlabeledtr.rb +0 -29
  119. data/lib/mml/mlongdiv.rb +0 -23
  120. data/lib/mml/mmultiscripts.rb +0 -25
  121. data/lib/mml/mn.rb +0 -36
  122. data/lib/mml/mo.rb +0 -84
  123. data/lib/mml/mover.rb +0 -21
  124. data/lib/mml/mpadded.rb +0 -27
  125. data/lib/mml/mphantom.rb +0 -17
  126. data/lib/mml/mprescripts.rb +0 -16
  127. data/lib/mml/mroot.rb +0 -17
  128. data/lib/mml/mrow.rb +0 -23
  129. data/lib/mml/ms.rb +0 -41
  130. data/lib/mml/mscarries.rb +0 -25
  131. data/lib/mml/mscarry.rb +0 -21
  132. data/lib/mml/msgroup.rb +0 -23
  133. data/lib/mml/msline.rb +0 -26
  134. data/lib/mml/mspace.rb +0 -56
  135. data/lib/mml/msqrt.rb +0 -17
  136. data/lib/mml/msrow.rb +0 -19
  137. data/lib/mml/mstack.rb +0 -25
  138. data/lib/mml/mstyle.rb +0 -209
  139. data/lib/mml/msub.rb +0 -19
  140. data/lib/mml/msubsup.rb +0 -21
  141. data/lib/mml/msup.rb +0 -19
  142. data/lib/mml/mtable.rb +0 -59
  143. data/lib/mml/mtd.rb +0 -21
  144. data/lib/mml/mtext.rb +0 -36
  145. data/lib/mml/mtr.rb +0 -27
  146. data/lib/mml/munder.rb +0 -23
  147. data/lib/mml/munderover.rb +0 -23
  148. data/lib/mml/namespace.rb +0 -9
  149. data/lib/mml/none.rb +0 -16
  150. data/lib/mml/semantics.rb +0 -17
  151. /data/lib/mml/{opal_setup.rb.erb → v3/opal_setup.rb.erb} +0 -0
@@ -1,103 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Mml
4
- module Configuration
5
- SUPPORTED_TAGS = %i[
6
- mmultiscripts
7
- maligngroup
8
- malignmark
9
- munderover
10
- semantics
11
- mscarries
12
- mfraction
13
- mphantom
14
- menclose
15
- mlongdiv
16
- mpadded
17
- msubsup
18
- mscarry
19
- mfenced
20
- msgroup
21
- mglyph
22
- mstack
23
- munder
24
- mtable
25
- mstyle
26
- mspace
27
- msline
28
- merror
29
- msrow
30
- mfrac
31
- mover
32
- mroot
33
- mtext
34
- msqrt
35
- none
36
- mrow
37
- msub
38
- msup
39
- mi
40
- mo
41
- mn
42
- ms
43
- ].freeze
44
-
45
- COMMON_ATTRIBUTES_CLASSES = %w[
46
- Math
47
- Mmultiscripts
48
- Munderover
49
- Semantics
50
- Mscarries
51
- Mfraction
52
- Mlongdiv
53
- Mphantom
54
- Menclose
55
- Mfenced
56
- Mpadded
57
- Msubsup
58
- Msgroup
59
- Mscarry
60
- Munder
61
- Mstyle
62
- Mstack
63
- Merror
64
- Mover
65
- Mfrac
66
- Msrow
67
- Mroot
68
- Msqrt
69
- Mrow
70
- Msub
71
- Msup
72
- Mtd
73
- Ms
74
- ].freeze
75
-
76
- module_function
77
-
78
- def config
79
- @config ||= {}
80
- end
81
-
82
- def config=(config)
83
- self.config.merge!(config)
84
- end
85
-
86
- def custom_models=(models_hash)
87
- # { Mi => CustomMiClass, Mo => CustomMoClass }
88
- models_hash.each { |klass, model| klass.model(model) }
89
- end
90
-
91
- def adapter
92
- Lutaml::Model::Config.xml_adapter
93
- end
94
-
95
- def adapter=(adapter)
96
- Lutaml::Model::Config.xml_adapter_type = adapter
97
- end
98
-
99
- def class_for(class_name)
100
- config[class_name]
101
- end
102
- end
103
- end
data/lib/mml/maction.rb DELETED
@@ -1,20 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Mml
4
- class Maction < Lutaml::Model::Serializable
5
- attribute :mathcolor, :string
6
- attribute :mathbackground, :string
7
- attribute :actiontype, :string
8
- attribute :selection, :string
9
-
10
- xml do
11
- namespace Namespace
12
- element "maction"
13
-
14
- map_attribute "mathcolor", to: :mathcolor
15
- map_attribute "mathbackground", to: :mathbackground
16
- map_attribute "actiontype", to: :actiontype
17
- map_attribute "selection", to: :selection
18
- end
19
- end
20
- end
@@ -1,18 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Mml
4
- class Maligngroup < Lutaml::Model::Serializable
5
- attribute :mathcolor, :string
6
- attribute :mathbackground, :string
7
- attribute :groupalign, :string
8
-
9
- xml do
10
- namespace Namespace
11
- element "maligngroup"
12
-
13
- map_attribute "mathcolor", to: :mathcolor
14
- map_attribute "mathbackground", to: :mathbackground
15
- map_attribute "groupalign", to: :groupalign
16
- end
17
- end
18
- end
@@ -1,18 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Mml
4
- class Malignmark < Lutaml::Model::Serializable
5
- attribute :mathcolor, :string
6
- attribute :mathbackground, :string
7
- attribute :edge, :string
8
-
9
- xml do
10
- namespace Namespace
11
- element "malignmark"
12
-
13
- map_attribute "mathcolor", to: :mathcolor
14
- map_attribute "mathbackground", to: :mathbackground
15
- map_attribute "edge", to: :edge
16
- end
17
- end
18
- end
data/lib/mml/math.rb DELETED
@@ -1,18 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Mml
4
- class Math < Lutaml::Model::Serializable
5
- attribute :display, :string
6
-
7
- xml do
8
- namespace Namespace
9
- element "math"
10
- mixed_content
11
-
12
- map_attribute :display, to: :display
13
- end
14
- end
15
-
16
- # For backward compatibility, we keep MathWithNamespace as an alias to Math.
17
- MathWithNamespace = Math
18
- end
data/lib/mml/menclose.rb DELETED
@@ -1,19 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Mml
4
- class Menclose < Lutaml::Model::Serializable
5
- attribute :mathcolor, :string
6
- attribute :mathbackground, :string
7
- attribute :notation, :string
8
-
9
- xml do
10
- namespace Namespace
11
- element "menclose"
12
- mixed_content
13
-
14
- map_attribute "mathcolor", to: :mathcolor
15
- map_attribute "mathbackground", to: :mathbackground
16
- map_attribute "notation", to: :notation
17
- end
18
- end
19
- end
data/lib/mml/merror.rb DELETED
@@ -1,17 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Mml
4
- class Merror < Lutaml::Model::Serializable
5
- attribute :mathbackground, :string
6
- attribute :mathcolor, :string
7
-
8
- xml do
9
- namespace Namespace
10
- element "merror"
11
- mixed_content
12
-
13
- map_attribute "mathcolor", to: :mathcolor
14
- map_attribute "mathbackground", to: :mathbackground
15
- end
16
- end
17
- end
data/lib/mml/mfenced.rb DELETED
@@ -1,26 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Mml
4
- class Mfenced < Lutaml::Model::Serializable
5
- attribute :mathbackground, :string
6
- attribute :separators, :string
7
- attribute :mathcolor, :string
8
- attribute :content, :string
9
- attribute :close, :string
10
- attribute :open, :string
11
-
12
- xml do
13
- namespace Namespace
14
- element "mfenced"
15
- mixed_content
16
-
17
- map_content to: :content
18
-
19
- map_attribute "mathbackground", to: :mathbackground
20
- map_attribute "separators", to: :separators
21
- map_attribute "mathcolor", to: :mathcolor
22
- map_attribute "close", to: :close
23
- map_attribute "open", to: :open
24
- end
25
- end
26
- end
data/lib/mml/mfrac.rb DELETED
@@ -1,25 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Mml
4
- class Mfrac < Lutaml::Model::Serializable
5
- attribute :mathcolor, :string
6
- attribute :mathbackground, :string
7
- attribute :linethickness, :string
8
- attribute :numalign, :string
9
- attribute :denomalign, :string
10
- attribute :bevelled, :string
11
-
12
- xml do
13
- namespace Namespace
14
- element "mfrac"
15
- mixed_content
16
-
17
- map_attribute "mathcolor", to: :mathcolor
18
- map_attribute "mathbackground", to: :mathbackground
19
- map_attribute "linethickness", to: :linethickness
20
- map_attribute "numalign", to: :numalign
21
- map_attribute "denomalign", to: :denomalign
22
- map_attribute "bevelled", to: :bevelled
23
- end
24
- end
25
- end
data/lib/mml/mfraction.rb DELETED
@@ -1,25 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Mml
4
- class Mfraction < Lutaml::Model::Serializable
5
- attribute :mathcolor, :string
6
- attribute :mathbackground, :string
7
- attribute :linethickness, :string
8
- attribute :numalign, :string
9
- attribute :denomalign, :string
10
- attribute :bevelled, :string
11
-
12
- xml do
13
- namespace Namespace
14
- element "mfraction"
15
- mixed_content
16
-
17
- map_attribute "mathcolor", to: :mathcolor
18
- map_attribute "mathbackground", to: :mathbackground
19
- map_attribute "linethickness", to: :linethickness
20
- map_attribute "numalign", to: :numalign
21
- map_attribute "denomalign", to: :denomalign
22
- map_attribute "bevelled", to: :bevelled
23
- end
24
- end
25
- end
data/lib/mml/mglyph.rb DELETED
@@ -1,44 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Mml
4
- class Mglyph < Lutaml::Model::Serializable
5
- attribute :alt, :string
6
- attribute :src, :string
7
- attribute :width, :string
8
- attribute :color, :string
9
- attribute :index, :integer
10
- attribute :height, :string
11
- attribute :valign, :string
12
- attribute :mathsize, :string
13
- attribute :fontsize, :string
14
- attribute :fontstyle, :string
15
- attribute :mathcolor, :string
16
- attribute :fontfamily, :string
17
- attribute :fontweight, :string
18
- attribute :background, :string
19
- attribute :mathvariant, :string
20
- attribute :mathbackground, :string
21
-
22
- xml do
23
- namespace Namespace
24
- element "mglyph"
25
-
26
- map_attribute "src", to: :src
27
- map_attribute "alt", to: :alt
28
- map_attribute "color", to: :color
29
- map_attribute "index", to: :index
30
- map_attribute "width", to: :width
31
- map_attribute "height", to: :height
32
- map_attribute "valign", to: :valign
33
- map_attribute "mathsize", to: :mathsize
34
- map_attribute "fontsize", to: :fontsize
35
- map_attribute "fontstyle", to: :fontstyle
36
- map_attribute "mathcolor", to: :mathcolor
37
- map_attribute "background", to: :background
38
- map_attribute "fontfamily", to: :fontfamily
39
- map_attribute "fontweight", to: :fontweight
40
- map_attribute "mathvariant", to: :mathvariant
41
- map_attribute "mathbackground", to: :mathbackground
42
- end
43
- end
44
- end
data/lib/mml/mi.rb DELETED
@@ -1,36 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Mml
4
- class Mi < Lutaml::Model::Serializable
5
- attribute :dir, :string
6
- attribute :value, :string
7
- attribute :color, :string
8
- attribute :mathsize, :string
9
- attribute :fontsize, :string
10
- attribute :fontstyle, :string
11
- attribute :mathcolor, :string
12
- attribute :background, :string
13
- attribute :fontfamily, :string
14
- attribute :fontweight, :string
15
- attribute :mathvariant, :string
16
- attribute :mathbackground, :string
17
-
18
- xml do
19
- namespace Namespace
20
- element "mi"
21
-
22
- map_content to: :value
23
- map_attribute "dir", to: :dir
24
- map_attribute "color", to: :color
25
- map_attribute "mathsize", to: :mathsize
26
- map_attribute "fontsize", to: :fontsize
27
- map_attribute "fontstyle", to: :fontstyle
28
- map_attribute "mathcolor", to: :mathcolor
29
- map_attribute "fontfamily", to: :fontfamily
30
- map_attribute "fontweight", to: :fontweight
31
- map_attribute "background", to: :background
32
- map_attribute "mathvariant", to: :mathvariant
33
- map_attribute "mathbackground", to: :mathbackground
34
- end
35
- end
36
- end
@@ -1,29 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Mml
4
- autoload(:Mtd, "mml/mtd")
5
-
6
- class Mlabeledtr < Lutaml::Model::Serializable
7
- attribute :mathbackground, :string
8
- attribute :columnalign, :string
9
- attribute :groupalign, :string
10
- attribute :mathcolor, :string
11
- attribute :rowalign, :string
12
- attribute :id, :string
13
- attribute :mtd_value, Mtd, collection: true
14
-
15
- xml do
16
- namespace Namespace
17
- element "mlabeledtr"
18
- mixed_content
19
-
20
- map_attribute "mathbackground", to: :mathbackground
21
- map_attribute "columnalign", to: :columnalign
22
- map_attribute "groupalign", to: :groupalign
23
- map_attribute "mathcolor", to: :mathcolor
24
- map_attribute "rowalign", to: :rowalign
25
- map_attribute "id", to: :id
26
- map_element "mtd", to: :mtd_value
27
- end
28
- end
29
- end
data/lib/mml/mlongdiv.rb DELETED
@@ -1,23 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Mml
4
- class Mlongdiv < Lutaml::Model::Serializable
5
- attribute :mathbackground, :string
6
- attribute :longdivstyle, :string
7
- attribute :mathcolor, :string
8
- attribute :position, :integer
9
- attribute :shift, :integer
10
-
11
- xml do
12
- namespace Namespace
13
- element "mlongdiv"
14
- mixed_content
15
-
16
- map_attribute "mathbackground", to: :mathbackground
17
- map_attribute "longdivstyle", to: :longdivstyle
18
- map_attribute "mathcolor", to: :mathcolor
19
- map_attribute "position", to: :position
20
- map_attribute "shift", to: :shift
21
- end
22
- end
23
- end
@@ -1,25 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Mml
4
- autoload(:Mprescripts, "mml/mprescripts")
5
-
6
- class Mmultiscripts < Lutaml::Model::Serializable
7
- attribute :mathcolor, :string
8
- attribute :mathbackground, :string
9
- attribute :subscriptshift, :string
10
- attribute :superscriptshift, :string
11
- attribute :mprescripts_value, Mprescripts
12
-
13
- xml do
14
- namespace Namespace
15
- element "mmultiscripts"
16
- mixed_content
17
-
18
- map_attribute "mathcolor", to: :mathcolor
19
- map_attribute "mathbackground", to: :mathbackground
20
- map_attribute "subscriptshift", to: :subscriptshift
21
- map_attribute "superscriptshift", to: :superscriptshift
22
- map_element "mprescripts", to: :mprescripts_value
23
- end
24
- end
25
- end
data/lib/mml/mn.rb DELETED
@@ -1,36 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Mml
4
- class Mn < Lutaml::Model::Serializable
5
- attribute :value, :string
6
- attribute :mathcolor, :string
7
- attribute :mathbackground, :string
8
- attribute :mathvariant, :string
9
- attribute :mathsize, :string
10
- attribute :dir, :string
11
- attribute :fontfamily, :string
12
- attribute :fontweight, :string
13
- attribute :fontstyle, :string
14
- attribute :fontsize, :string
15
- attribute :color, :string
16
- attribute :background, :string
17
-
18
- xml do
19
- namespace Namespace
20
- element "mn"
21
-
22
- map_content to: :value
23
- map_attribute "mathcolor", to: :mathcolor
24
- map_attribute "mathbackground", to: :mathbackground
25
- map_attribute "mathvariant", to: :mathvariant
26
- map_attribute "mathsize", to: :mathsize
27
- map_attribute "dir", to: :dir
28
- map_attribute "fontfamily", to: :fontfamily
29
- map_attribute "fontweight", to: :fontweight
30
- map_attribute "fontstyle", to: :fontstyle
31
- map_attribute "fontsize", to: :fontsize
32
- map_attribute "color", to: :color
33
- map_attribute "background", to: :background
34
- end
35
- end
36
- end
data/lib/mml/mo.rb DELETED
@@ -1,84 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Mml
4
- class Mo < Lutaml::Model::Serializable
5
- attribute :value, :string
6
- attribute :mathcolor, :string
7
- attribute :mathbackground, :string
8
- attribute :mathvariant, :string
9
- attribute :mathsize, :string
10
- attribute :dir, :string
11
- attribute :fontfamily, :string
12
- attribute :fontweight, :string
13
- attribute :fontstyle, :string
14
- attribute :fontsize, :string
15
- attribute :color, :string
16
- attribute :background, :string
17
- attribute :form, :string
18
- attribute :fence, :string
19
- attribute :separator, :string
20
- attribute :lspace, :string
21
- attribute :rspace, :string
22
- attribute :stretchy, :string
23
- attribute :symmetric, :string
24
- attribute :maxsize, :string
25
- attribute :minsize, :string
26
- attribute :largeop, :string
27
- attribute :movablelimits, :string
28
- attribute :accent, :string
29
- attribute :linebreak, :string
30
- attribute :lineleading, :string
31
- attribute :linebreakstyle, :string
32
- attribute :linebreakmultchar, :string
33
- attribute :indentalign, :string
34
- attribute :indentshift, :string
35
- attribute :indenttarget, :string
36
- attribute :indentalignfirst, :string
37
- attribute :indentshiftfirst, :string
38
- attribute :indentalignlast, :string
39
- attribute :indentshiftlast, :string
40
-
41
- # rubocop:disable Metrics/BlockLength
42
- xml do
43
- namespace Namespace
44
- element "mo"
45
-
46
- map_content to: :value
47
- map_attribute "dir", to: :dir
48
- map_attribute "form", to: :form
49
- map_attribute "fence", to: :fence
50
- map_attribute "color", to: :color
51
- map_attribute "accent", to: :accent
52
- map_attribute "lspace", to: :lspace
53
- map_attribute "rspace", to: :rspace
54
- map_attribute "maxsize", to: :maxsize
55
- map_attribute "minsize", to: :minsize
56
- map_attribute "largeop", to: :largeop
57
- map_attribute "stretchy", to: :stretchy
58
- map_attribute "mathsize", to: :mathsize
59
- map_attribute "fontsize", to: :fontsize
60
- map_attribute "linebreak", to: :linebreak
61
- map_attribute "fontstyle", to: :fontstyle
62
- map_attribute "separator", to: :separator
63
- map_attribute "symmetric", to: :symmetric
64
- map_attribute "mathcolor", to: :mathcolor
65
- map_attribute "fontfamily", to: :fontfamily
66
- map_attribute "fontweight", to: :fontweight
67
- map_attribute "background", to: :background
68
- map_attribute "mathvariant", to: :mathvariant
69
- map_attribute "lineleading", to: :lineleading
70
- map_attribute "indentalign", to: :indentalign
71
- map_attribute "indentshift", to: :indentshift
72
- map_attribute "indenttarget", to: :indenttarget
73
- map_attribute "movablelimits", to: :movablelimits
74
- map_attribute "linebreakstyle", to: :linebreakstyle
75
- map_attribute "mathbackground", to: :mathbackground
76
- map_attribute "indentalignlast", to: :indentalignlast
77
- map_attribute "indentshiftlast", to: :indentshiftlast
78
- map_attribute "indentalignfirst", to: :indentalignfirst
79
- map_attribute "indentshiftfirst", to: :indentshiftfirst
80
- map_attribute "linebreakmultchar", to: :linebreakmultchar
81
- end
82
- # rubocop:enable Metrics/BlockLength
83
- end
84
- end
data/lib/mml/mover.rb DELETED
@@ -1,21 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Mml
4
- class Mover < Lutaml::Model::Serializable
5
- attribute :mathbackground, :string
6
- attribute :mathcolor, :string
7
- attribute :accent, :string
8
- attribute :align, :string
9
-
10
- xml do
11
- namespace Namespace
12
- element "mover"
13
- mixed_content
14
-
15
- map_attribute "mathbackground", to: :mathbackground
16
- map_attribute "mathcolor", to: :mathcolor
17
- map_attribute "accent", to: :accent
18
- map_attribute "align", to: :align
19
- end
20
- end
21
- end
data/lib/mml/mpadded.rb DELETED
@@ -1,27 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Mml
4
- class Mpadded < Lutaml::Model::Serializable
5
- attribute :mathbackground, :string
6
- attribute :mathcolor, :string
7
- attribute :voffset, :string
8
- attribute :height, :string
9
- attribute :lspace, :string
10
- attribute :depth, :string
11
- attribute :width, :string
12
-
13
- xml do
14
- namespace Namespace
15
- element "mpadded"
16
- mixed_content
17
-
18
- map_attribute "mathbackground", to: :mathbackground
19
- map_attribute "mathcolor", to: :mathcolor
20
- map_attribute "voffset", to: :voffset
21
- map_attribute "height", to: :height
22
- map_attribute "lspace", to: :lspace
23
- map_attribute "depth", to: :depth
24
- map_attribute "width", to: :width
25
- end
26
- end
27
- end
data/lib/mml/mphantom.rb DELETED
@@ -1,17 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Mml
4
- class Mphantom < Lutaml::Model::Serializable
5
- attribute :mathcolor, :string
6
- attribute :mathbackground, :string
7
-
8
- xml do
9
- namespace Namespace
10
- element "mphantom"
11
- mixed_content
12
-
13
- map_attribute "mathcolor", to: :mathcolor
14
- map_attribute "mathbackground", to: :mathbackground
15
- end
16
- end
17
- end
@@ -1,16 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Mml
4
- class Mprescripts < Lutaml::Model::Serializable
5
- attribute :mathcolor, :string
6
- attribute :mathbackground, :string
7
-
8
- xml do
9
- namespace Namespace
10
- element "mprescripts"
11
-
12
- map_attribute "mathcolor", to: :mathcolor
13
- map_attribute "mathbackground", to: :mathbackground
14
- end
15
- end
16
- end
data/lib/mml/mroot.rb DELETED
@@ -1,17 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Mml
4
- class Mroot < Lutaml::Model::Serializable
5
- attribute :mathcolor, :string
6
- attribute :mathbackground, :string
7
-
8
- xml do
9
- namespace Namespace
10
- element "mroot"
11
- mixed_content
12
-
13
- map_attribute "mathcolor", to: :mathcolor
14
- map_attribute "mathbackground", to: :mathbackground
15
- end
16
- end
17
- end