mml 0.1.0 → 0.4.5

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 (54) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +3 -0
  3. data/Gemfile +2 -0
  4. data/lib/mml/common_attributes.rb +21 -0
  5. data/lib/mml/configuration.rb +104 -0
  6. data/lib/mml/maction.rb +19 -0
  7. data/lib/mml/maligngroup.rb +17 -0
  8. data/lib/mml/malignmark.rb +17 -0
  9. data/lib/mml/math_with_namespace.rb +14 -0
  10. data/lib/mml/math_with_nil_namespace.rb +13 -0
  11. data/lib/mml/menclose.rb +17 -0
  12. data/lib/mml/merror.rb +15 -0
  13. data/lib/mml/mfenced.rb +24 -0
  14. data/lib/mml/mfrac.rb +23 -0
  15. data/lib/mml/mfraction.rb +23 -0
  16. data/lib/mml/mglyph.rb +43 -0
  17. data/lib/mml/mi.rb +35 -0
  18. data/lib/mml/mlabeledtr.rb +27 -0
  19. data/lib/mml/mlongdiv.rb +21 -0
  20. data/lib/mml/mmultiscripts.rb +23 -0
  21. data/lib/mml/mn.rb +35 -0
  22. data/lib/mml/mo.rb +83 -0
  23. data/lib/mml/mover.rb +19 -0
  24. data/lib/mml/mpadded.rb +25 -0
  25. data/lib/mml/mphantom.rb +15 -0
  26. data/lib/mml/mprescripts.rb +15 -0
  27. data/lib/mml/mroot.rb +15 -0
  28. data/lib/mml/mrow.rb +21 -0
  29. data/lib/mml/ms.rb +39 -0
  30. data/lib/mml/mscarries.rb +23 -0
  31. data/lib/mml/mscarry.rb +19 -0
  32. data/lib/mml/msgroup.rb +21 -0
  33. data/lib/mml/msline.rb +25 -0
  34. data/lib/mml/mspace.rb +55 -0
  35. data/lib/mml/msqrt.rb +15 -0
  36. data/lib/mml/msrow.rb +17 -0
  37. data/lib/mml/mstack.rb +23 -0
  38. data/lib/mml/mstyle.rb +207 -0
  39. data/lib/mml/msub.rb +17 -0
  40. data/lib/mml/msubsup.rb +19 -0
  41. data/lib/mml/msup.rb +17 -0
  42. data/lib/mml/mtable.rb +57 -0
  43. data/lib/mml/mtd.rb +19 -0
  44. data/lib/mml/mtext.rb +35 -0
  45. data/lib/mml/mtr.rb +25 -0
  46. data/lib/mml/munder.rb +21 -0
  47. data/lib/mml/munderover.rb +21 -0
  48. data/lib/mml/none.rb +15 -0
  49. data/lib/mml/opal_setup.rb.erb +6 -0
  50. data/lib/mml/semantics.rb +15 -0
  51. data/lib/mml/version.rb +1 -1
  52. data/lib/mml.rb +43 -2
  53. data/mml.gemspec +1 -0
  54. metadata +64 -3
@@ -0,0 +1,15 @@
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
+ root "mphantom", mixed: true
10
+
11
+ map_attribute "mathcolor", to: :mathcolor, namespace: nil
12
+ map_attribute "mathbackground", to: :mathbackground, namespace: nil
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,15 @@
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
+ root "mprescripts"
10
+
11
+ map_attribute "mathcolor", to: :mathcolor, namespace: nil
12
+ map_attribute "mathbackground", to: :mathbackground, namespace: nil
13
+ end
14
+ end
15
+ end
data/lib/mml/mroot.rb ADDED
@@ -0,0 +1,15 @@
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
+ root "mroot", mixed: true
10
+
11
+ map_attribute "mathcolor", to: :mathcolor, namespace: nil
12
+ map_attribute "mathbackground", to: :mathbackground, namespace: nil
13
+ end
14
+ end
15
+ end
data/lib/mml/mrow.rb ADDED
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mml
4
+ class Mrow < Lutaml::Model::Serializable
5
+ attribute :mathbackground, :string
6
+ attribute :mathcolor, :string
7
+ attribute :content, :string
8
+ attribute :intent, :string
9
+ attribute :dir, :string
10
+
11
+ xml do
12
+ root "mrow", mixed: true
13
+
14
+ map_content to: :content
15
+ map_attribute "dir", to: :dir, namespace: nil
16
+ map_attribute "intent", to: :intent, namespace: nil
17
+ map_attribute "mathcolor", to: :mathcolor, namespace: nil
18
+ map_attribute "mathbackground", to: :mathbackground, namespace: nil
19
+ end
20
+ end
21
+ end
data/lib/mml/ms.rb ADDED
@@ -0,0 +1,39 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mml
4
+ class Ms < Lutaml::Model::Serializable
5
+ attribute :mathbackground, :string
6
+ attribute :mathvariant, :string
7
+ attribute :fontfamily, :string
8
+ attribute :background, :string
9
+ attribute :fontweight, :string
10
+ attribute :mathcolor, :string
11
+ attribute :fontstyle, :string
12
+ attribute :mathsize, :string
13
+ attribute :fontsize, :string
14
+ attribute :lquote, :string
15
+ attribute :rquote, :string
16
+ attribute :color, :string
17
+ attribute :value, :string
18
+ attribute :dir, :string
19
+
20
+ xml do
21
+ root "ms", mixed: true
22
+
23
+ map_content to: :value
24
+ map_attribute "mathbackground", to: :mathbackground, namespace: nil
25
+ map_attribute "mathvariant", to: :mathvariant, namespace: nil
26
+ map_attribute "fontfamily", to: :fontfamily, namespace: nil
27
+ map_attribute "fontweight", to: :fontweight, namespace: nil
28
+ map_attribute "background", to: :background, namespace: nil
29
+ map_attribute "fontstyle", to: :fontstyle, namespace: nil
30
+ map_attribute "mathcolor", to: :mathcolor, namespace: nil
31
+ map_attribute "fontsize", to: :fontsize, namespace: nil
32
+ map_attribute "mathsize", to: :mathsize, namespace: nil
33
+ map_attribute "lquote", to: :lquote, namespace: nil
34
+ map_attribute "rquote", to: :rquote, namespace: nil
35
+ map_attribute "color", to: :color, namespace: nil
36
+ map_attribute "dir", to: :dir, namespace: nil
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mml
4
+ class Mscarries < Lutaml::Model::Serializable
5
+ attribute :scriptsizemultiplier, :integer
6
+ attribute :mathbackground, :string
7
+ attribute :mathcolor, :string
8
+ attribute :position, :integer
9
+ attribute :location, :string
10
+ attribute :crossout, :string
11
+
12
+ xml do
13
+ root "mscarries", mixed: true
14
+
15
+ map_attribute "scriptsizemultiplier", to: :scriptsizemultiplier, namespace: nil
16
+ map_attribute "mathbackground", to: :mathbackground, namespace: nil
17
+ map_attribute "mathcolor", to: :mathcolor, namespace: nil
18
+ map_attribute "position", to: :position, namespace: nil
19
+ map_attribute "location", to: :location, namespace: nil
20
+ map_attribute "crossout", to: :crossout, namespace: nil
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mml
4
+ class Mscarry < Lutaml::Model::Serializable
5
+ attribute :mathcolor, :string
6
+ attribute :mathbackground, :string
7
+ attribute :location, :string
8
+ attribute :crossout, :string
9
+
10
+ xml do
11
+ root "mscarry", mixed: true
12
+
13
+ map_attribute "mathcolor", to: :mathcolor, namespace: nil
14
+ map_attribute "mathbackground", to: :mathbackground, namespace: nil
15
+ map_attribute "location", to: :location, namespace: nil
16
+ map_attribute "crossout", to: :crossout, namespace: nil
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mml
4
+ class Msgroup < Lutaml::Model::Serializable
5
+ attribute :mathcolor, :string
6
+ attribute :mathbackground, :string
7
+ attribute :position, :integer
8
+ attribute :shift, :integer
9
+ attribute :msgroup_text, :string
10
+
11
+ xml do
12
+ root "msgroup", mixed: true
13
+
14
+ map_content to: :msgroup_text
15
+ map_attribute "mathcolor", to: :mathcolor, namespace: nil
16
+ map_attribute "mathbackground", to: :mathbackground, namespace: nil
17
+ map_attribute "position", to: :position, namespace: nil
18
+ map_attribute "shift", to: :shift, namespace: nil
19
+ end
20
+ end
21
+ end
data/lib/mml/msline.rb ADDED
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mml
4
+ class Msline < Lutaml::Model::Serializable
5
+ attribute :mathcolor, :string
6
+ attribute :mathbackground, :string
7
+ attribute :position, :integer
8
+ attribute :length, :integer
9
+ attribute :leftoverhang, :string
10
+ attribute :rightoverhang, :string
11
+ attribute :mslinethickness, :string
12
+
13
+ xml do
14
+ root "msline"
15
+
16
+ map_attribute "mathcolor", to: :mathcolor, namespace: nil
17
+ map_attribute "mathbackground", to: :mathbackground, namespace: nil
18
+ map_attribute "position", to: :position, namespace: nil
19
+ map_attribute "length", to: :length, namespace: nil
20
+ map_attribute "leftoverhang", to: :leftoverhang, namespace: nil
21
+ map_attribute "rightoverhang", to: :rightoverhang, namespace: nil
22
+ map_attribute "mslinethickness", to: :mslinethickness, namespace: nil
23
+ end
24
+ end
25
+ end
data/lib/mml/mspace.rb ADDED
@@ -0,0 +1,55 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mml
4
+ class Mspace < Lutaml::Model::Serializable
5
+ attribute :mathcolor, :string
6
+ attribute :mathbackground, :string
7
+ attribute :mathvariant, :string
8
+ attribute :mathsize, :string
9
+ attribute :dir, :string
10
+ attribute :fontfamily, :string
11
+ attribute :fontweight, :string
12
+ attribute :fontstyle, :string
13
+ attribute :fontsize, :string
14
+ attribute :color, :string
15
+ attribute :background, :string
16
+ attribute :width, :string
17
+ attribute :height, :string
18
+ attribute :depth, :string
19
+ attribute :linebreak, :string
20
+ attribute :indentalign, :string
21
+ attribute :indentshift, :string
22
+ attribute :indenttarget, :string
23
+ attribute :indentalignfirst, :string
24
+ attribute :indentshiftfirst, :string
25
+ attribute :indentalignlast, :string
26
+ attribute :indentshiftlast, :string
27
+
28
+ xml do
29
+ root "mspace"
30
+
31
+ map_attribute "mathcolor", to: :mathcolor, namespace: nil
32
+ map_attribute "mathbackground", to: :mathbackground, namespace: nil
33
+ map_attribute "mathvariant", to: :mathvariant, namespace: nil
34
+ map_attribute "mathsize", to: :mathsize, namespace: nil
35
+ map_attribute "dir", to: :dir, namespace: nil
36
+ map_attribute "fontfamily", to: :fontfamily, namespace: nil
37
+ map_attribute "fontweight", to: :fontweight, namespace: nil
38
+ map_attribute "fontstyle", to: :fontstyle, namespace: nil
39
+ map_attribute "fontsize", to: :fontsize, namespace: nil
40
+ map_attribute "color", to: :color, namespace: nil
41
+ map_attribute "background", to: :background, namespace: nil
42
+ map_attribute "width", to: :width, namespace: nil
43
+ map_attribute "height", to: :height, namespace: nil
44
+ map_attribute "depth", to: :depth, namespace: nil
45
+ map_attribute "linebreak", to: :linebreak, namespace: nil
46
+ map_attribute "indentalign", to: :indentalign, namespace: nil
47
+ map_attribute "indentshift", to: :indentshift, namespace: nil
48
+ map_attribute "indenttarget", to: :indenttarget, namespace: nil
49
+ map_attribute "indentalignfirst", to: :indentalignfirst, namespace: nil
50
+ map_attribute "indentshiftfirst", to: :indentshiftfirst, namespace: nil
51
+ map_attribute "indentalignlast", to: :indentalignlast, namespace: nil
52
+ map_attribute "indentshiftlast", to: :indentshiftlast, namespace: nil
53
+ end
54
+ end
55
+ end
data/lib/mml/msqrt.rb ADDED
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mml
4
+ class Msqrt < Lutaml::Model::Serializable
5
+ attribute :mathcolor, :string
6
+ attribute :mathbackground, :string
7
+
8
+ xml do
9
+ root "msqrt", mixed: true
10
+
11
+ map_attribute "mathcolor", to: :mathcolor, namespace: nil
12
+ map_attribute "mathbackground", to: :mathbackground, namespace: nil
13
+ end
14
+ end
15
+ end
data/lib/mml/msrow.rb ADDED
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mml
4
+ class Msrow < Lutaml::Model::Serializable
5
+ attribute :mathcolor, :string
6
+ attribute :mathbackground, :string
7
+ attribute :position, :integer
8
+
9
+ xml do
10
+ root "msrow", mixed: true
11
+
12
+ map_attribute "mathcolor", to: :mathcolor, namespace: nil
13
+ map_attribute "mathbackground", to: :mathbackground, namespace: nil
14
+ map_attribute "position", to: :position, namespace: nil
15
+ end
16
+ end
17
+ end
data/lib/mml/mstack.rb ADDED
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mml
4
+ class Mstack < Lutaml::Model::Serializable
5
+ attribute :mathcolor, :string
6
+ attribute :mathbackground, :string
7
+ attribute :align, :string
8
+ attribute :stackalign, :string
9
+ attribute :charalign, :string
10
+ attribute :charspacing, :string
11
+
12
+ xml do
13
+ root "mstack", mixed: true
14
+
15
+ map_attribute "mathcolor", to: :mathcolor, namespace: nil
16
+ map_attribute "mathbackground", to: :mathbackground, namespace: nil
17
+ map_attribute "align", to: :align, namespace: nil
18
+ map_attribute "stackalign", to: :stackalign, namespace: nil
19
+ map_attribute "charalign", to: :charalign, namespace: nil
20
+ map_attribute "charspacing", to: :charspacing, namespace: nil
21
+ end
22
+ end
23
+ end
data/lib/mml/mstyle.rb ADDED
@@ -0,0 +1,207 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mml
4
+ # rubocop:disable Metrics/ClassLength
5
+ class Mstyle < Lutaml::Model::Serializable
6
+ attribute :mathcolor, :string
7
+ attribute :mathbackground, :string
8
+ attribute :scriptlevel, :integer
9
+ attribute :displaystyle, :string
10
+ attribute :scriptsizemultiplier, :integer
11
+ attribute :scriptminsize, :string
12
+ attribute :infixlinebreakstyle, :string
13
+ attribute :decimalpoint, :string
14
+ attribute :accent, :string
15
+ attribute :accentunder, :string
16
+ attribute :align, :string
17
+ attribute :alignmentscope, :string
18
+ attribute :bevelled, :string
19
+ attribute :charalign, :string
20
+ attribute :charspacing, :string
21
+ attribute :close, :string
22
+ attribute :columnalign, :string
23
+ attribute :columnlines, :string
24
+ attribute :columnspacing, :string
25
+ attribute :columnspan, :integer
26
+ attribute :columnwidth, :string
27
+ attribute :crossout, :string
28
+ attribute :denomalign, :string
29
+ attribute :depth, :string
30
+ attribute :dir, :string
31
+ attribute :edge, :string
32
+ attribute :equalcolumns, :string
33
+ attribute :equalrows, :string
34
+ attribute :fence, :string
35
+ attribute :form, :string
36
+ attribute :frame, :string
37
+ attribute :framespacing, :string
38
+ attribute :groupalign, :string
39
+ attribute :height, :string
40
+ attribute :indentalign, :string
41
+ attribute :indentalignfirst, :string
42
+ attribute :indentalignlast, :string
43
+ attribute :indentshift, :string
44
+ attribute :indentshiftfirst, :string
45
+ attribute :indentshiftlast, :string
46
+ attribute :indenttarget, :string
47
+ attribute :largeop, :string
48
+ attribute :leftoverhang, :string
49
+ attribute :length, :integer
50
+ attribute :linebreak, :string
51
+ attribute :linebreakmultchar, :string
52
+ attribute :linebreakstyle, :string
53
+ attribute :lineleading, :string
54
+ attribute :linethickness, :string
55
+ attribute :location, :string
56
+ attribute :longdivstyle, :string
57
+ attribute :lquote, :string
58
+ attribute :lspace, :string
59
+ attribute :mathsize, :string
60
+ attribute :mathvariant, :string
61
+ attribute :maxsize, :string
62
+ attribute :minlabelspacing, :string
63
+ attribute :minsize, :string
64
+ attribute :movablelimits, :string
65
+ attribute :mslinethickness, :string
66
+ attribute :notation, :string
67
+ attribute :numalign, :string
68
+ attribute :open, :string
69
+ attribute :position, :integer
70
+ attribute :rightoverhang, :string
71
+ attribute :rowalign, :string
72
+ attribute :rowlines, :string
73
+ attribute :rowspacing, :string
74
+ attribute :rowspan, :integer
75
+ attribute :rquote, :string
76
+ attribute :rspace, :string
77
+ attribute :selection, :integer
78
+ attribute :separator, :string
79
+ attribute :separators, :string
80
+ attribute :shift, :integer
81
+ attribute :side, :string
82
+ attribute :stackalign, :string
83
+ attribute :stretchy, :string
84
+ attribute :subscriptshift, :string
85
+ attribute :superscriptshift, :string
86
+ attribute :symmetric, :string
87
+ attribute :valign, :string
88
+ attribute :width, :string
89
+ attribute :fontfamily, :string
90
+ attribute :fontweight, :string
91
+ attribute :fontstyle, :string
92
+ attribute :fontsize, :string
93
+ attribute :color, :string
94
+ attribute :background, :string
95
+ attribute :veryverythinmathspace, :string
96
+ attribute :verythinmathspace, :string
97
+ attribute :thinmathspace, :string
98
+ attribute :mediummathspace, :string
99
+ attribute :thickmathspace, :string
100
+ attribute :verythickmathspace, :string
101
+ attribute :veryverythickmathspace, :string
102
+
103
+ # rubocop:disable Metrics/BlockLength
104
+ xml do
105
+ root "mstyle", mixed: true
106
+
107
+ map_attribute "mathcolor", to: :mathcolor, namespace: nil
108
+ map_attribute "mathbackground", to: :mathbackground, namespace: nil
109
+ map_attribute "scriptlevel", to: :scriptlevel, namespace: nil
110
+ map_attribute "displaystyle", to: :displaystyle, namespace: nil
111
+ map_attribute "scriptsizemultiplier", to: :scriptsizemultiplier, namespace: nil
112
+ map_attribute "scriptminsize", to: :scriptminsize, namespace: nil
113
+ map_attribute "infixlinebreakstyle", to: :infixlinebreakstyle, namespace: nil
114
+ map_attribute "decimalpoint", to: :decimalpoint, namespace: nil
115
+ map_attribute "accent", to: :accent, namespace: nil
116
+ map_attribute "accentunder", to: :accentunder, namespace: nil
117
+ map_attribute "align", to: :align, namespace: nil
118
+ map_attribute "alignmentscope", to: :alignmentscope, namespace: nil
119
+ map_attribute "bevelled", to: :bevelled, namespace: nil
120
+ map_attribute "charalign", to: :charalign, namespace: nil
121
+ map_attribute "charspacing", to: :charspacing, namespace: nil
122
+ map_attribute "close", to: :close, namespace: nil
123
+ map_attribute "columnalign", to: :columnalign, namespace: nil
124
+ map_attribute "columnlines", to: :columnlines, namespace: nil
125
+ map_attribute "columnspacing", to: :columnspacing, namespace: nil
126
+ map_attribute "columnspan", to: :columnspan, namespace: nil
127
+ map_attribute "columnwidth", to: :columnwidth, namespace: nil
128
+ map_attribute "crossout", to: :crossout, namespace: nil
129
+ map_attribute "denomalign", to: :denomalign, namespace: nil
130
+ map_attribute "depth", to: :depth, namespace: nil
131
+ map_attribute "dir", to: :dir, namespace: nil
132
+ map_attribute "edge", to: :edge, namespace: nil
133
+ map_attribute "equalcolumns", to: :equalcolumns, namespace: nil
134
+ map_attribute "equalrows", to: :equalrows, namespace: nil
135
+ map_attribute "fence", to: :fence, namespace: nil
136
+ map_attribute "form", to: :form, namespace: nil
137
+ map_attribute "frame", to: :frame, namespace: nil
138
+ map_attribute "framespacing", to: :framespacing, namespace: nil
139
+ map_attribute "groupalign", to: :groupalign, namespace: nil
140
+ map_attribute "height", to: :height, namespace: nil
141
+ map_attribute "indentalign", to: :indentalign, namespace: nil
142
+ map_attribute "indentalignfirst", to: :indentalignfirst, namespace: nil
143
+ map_attribute "indentalignlast", to: :indentalignlast, namespace: nil
144
+ map_attribute "indentshift", to: :indentshift, namespace: nil
145
+ map_attribute "indentshiftfirst", to: :indentshiftfirst, namespace: nil
146
+ map_attribute "indentshiftlast", to: :indentshiftlast, namespace: nil
147
+ map_attribute "indenttarget", to: :indenttarget, namespace: nil
148
+ map_attribute "largeop", to: :largeop, namespace: nil
149
+ map_attribute "leftoverhang", to: :leftoverhang, namespace: nil
150
+ map_attribute "length", to: :length, namespace: nil
151
+ map_attribute "linebreak", to: :linebreak, namespace: nil
152
+ map_attribute "linebreakmultchar", to: :linebreakmultchar, namespace: nil
153
+ map_attribute "linebreakstyle", to: :linebreakstyle, namespace: nil
154
+ map_attribute "lineleading", to: :lineleading, namespace: nil
155
+ map_attribute "linethickness", to: :linethickness, namespace: nil
156
+ map_attribute "location", to: :location, namespace: nil
157
+ map_attribute "longdivstyle", to: :longdivstyle, namespace: nil
158
+ map_attribute "lquote", to: :lquote, namespace: nil
159
+ map_attribute "lspace", to: :lspace, namespace: nil
160
+ map_attribute "mathsize", to: :mathsize, namespace: nil
161
+ map_attribute "mathvariant", to: :mathvariant, namespace: nil
162
+ map_attribute "maxsize", to: :maxsize, namespace: nil
163
+ map_attribute "minlabelspacing", to: :minlabelspacing, namespace: nil
164
+ map_attribute "minsize", to: :minsize, namespace: nil
165
+ map_attribute "movablelimits", to: :movablelimits, namespace: nil
166
+ map_attribute "mslinethickness", to: :mslinethickness, namespace: nil
167
+ map_attribute "notation", to: :notation, namespace: nil
168
+ map_attribute "numalign", to: :numalign, namespace: nil
169
+ map_attribute "open", to: :open, namespace: nil
170
+ map_attribute "position", to: :position, namespace: nil
171
+ map_attribute "rightoverhang", to: :rightoverhang, namespace: nil
172
+ map_attribute "rowalign", to: :rowalign, namespace: nil
173
+ map_attribute "rowlines", to: :rowlines, namespace: nil
174
+ map_attribute "rowspacing", to: :rowspacing, namespace: nil
175
+ map_attribute "rowspan", to: :rowspan, namespace: nil
176
+ map_attribute "rquote", to: :rquote, namespace: nil
177
+ map_attribute "rspace", to: :rspace, namespace: nil
178
+ map_attribute "selection", to: :selection, namespace: nil
179
+ map_attribute "separator", to: :separator, namespace: nil
180
+ map_attribute "separators", to: :separators, namespace: nil
181
+ map_attribute "shift", to: :shift, namespace: nil
182
+ map_attribute "side", to: :side, namespace: nil
183
+ map_attribute "stackalign", to: :stackalign, namespace: nil
184
+ map_attribute "stretchy", to: :stretchy, namespace: nil
185
+ map_attribute "subscriptshift", to: :subscriptshift, namespace: nil
186
+ map_attribute "superscriptshift", to: :superscriptshift, namespace: nil
187
+ map_attribute "symmetric", to: :symmetric, namespace: nil
188
+ map_attribute "valign", to: :valign, namespace: nil
189
+ map_attribute "width", to: :width, namespace: nil
190
+ map_attribute "fontfamily", to: :fontfamily, namespace: nil
191
+ map_attribute "fontweight", to: :fontweight, namespace: nil
192
+ map_attribute "fontstyle", to: :fontstyle, namespace: nil
193
+ map_attribute "fontsize", to: :fontsize, namespace: nil
194
+ map_attribute "color", to: :color, namespace: nil
195
+ map_attribute "background", to: :background, namespace: nil
196
+ map_attribute "veryverythinmathspace", to: :veryverythinmathspace, namespace: nil
197
+ map_attribute "verythinmathspace", to: :verythinmathspace, namespace: nil
198
+ map_attribute "thinmathspace", to: :thinmathspace, namespace: nil
199
+ map_attribute "mediummathspace", to: :mediummathspace, namespace: nil
200
+ map_attribute "thickmathspace", to: :thickmathspace, namespace: nil
201
+ map_attribute "verythickmathspace", to: :verythickmathspace, namespace: nil
202
+ map_attribute "veryverythickmathspace", to: :veryverythickmathspace, namespace: nil
203
+ end
204
+ # rubocop:enable Metrics/BlockLength
205
+ end
206
+ # rubocop:enable Metrics/ClassLength
207
+ end
data/lib/mml/msub.rb ADDED
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mml
4
+ class Msub < Lutaml::Model::Serializable
5
+ attribute :mathbackground, :string
6
+ attribute :subscriptshift, :string
7
+ attribute :mathcolor, :string
8
+
9
+ xml do
10
+ root "msub", mixed: true
11
+
12
+ map_attribute "mathbackground", to: :mathbackground, namespace: nil
13
+ map_attribute "subscriptshift", to: :subscriptshift, namespace: nil
14
+ map_attribute "mathcolor", to: :mathcolor, namespace: nil
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mml
4
+ class Msubsup < Lutaml::Model::Serializable
5
+ attribute :mathcolor, :string
6
+ attribute :mathbackground, :string
7
+ attribute :subscriptshift, :string
8
+ attribute :superscriptshift, :string
9
+
10
+ xml do
11
+ root "msubsup", mixed: true
12
+
13
+ map_attribute "mathcolor", to: :mathcolor, namespace: nil
14
+ map_attribute "mathbackground", to: :mathbackground, namespace: nil
15
+ map_attribute "subscriptshift", to: :subscriptshift, namespace: nil
16
+ map_attribute "superscriptshift", to: :superscriptshift, namespace: nil
17
+ end
18
+ end
19
+ end
data/lib/mml/msup.rb ADDED
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mml
4
+ class Msup < Lutaml::Model::Serializable
5
+ attribute :mathcolor, :string
6
+ attribute :mathbackground, :string
7
+ attribute :superscriptshift, :string
8
+
9
+ xml do
10
+ root "msup", mixed: true
11
+
12
+ map_attribute "mathcolor", to: :mathcolor, namespace: nil
13
+ map_attribute "mathbackground", to: :mathbackground, namespace: nil
14
+ map_attribute "superscriptshift", to: :superscriptshift, namespace: nil
15
+ end
16
+ end
17
+ end
data/lib/mml/mtable.rb ADDED
@@ -0,0 +1,57 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mml
4
+ autoload(:Mlabeledtr, "mml/mlabeledtr")
5
+ autoload(:Mtr, "mml/mtr")
6
+ class Mtable < Lutaml::Model::Serializable
7
+ attribute :mathcolor, :string
8
+ attribute :mathbackground, :string
9
+ attribute :align, :string
10
+ attribute :rowalign, :string
11
+ attribute :columnalign, :string
12
+ attribute :groupalign, :string
13
+ attribute :alignmentscope, :string
14
+ attribute :columnwidth, :string
15
+ attribute :width, :string
16
+ attribute :rowspacing, :string
17
+ attribute :columnspacing, :string
18
+ attribute :rowlines, :string
19
+ attribute :columnlines, :string
20
+ attribute :frame, :string
21
+ attribute :framespacing, :string
22
+ attribute :equalrows, :string
23
+ attribute :equalcolumns, :string
24
+ attribute :displaystyle, :string
25
+ attribute :side, :string
26
+ attribute :minlabelspacing, :string
27
+ attribute :mlabeledtr_value, Mlabeledtr, collection: true
28
+ attribute :mtr_value, Mtr, collection: true
29
+
30
+ xml do
31
+ root "mtable", mixed: true
32
+
33
+ map_attribute "mathcolor", to: :mathcolor, namespace: nil
34
+ map_attribute "mathbackground", to: :mathbackground, namespace: nil
35
+ map_attribute "align", to: :align, namespace: nil
36
+ map_attribute "rowalign", to: :rowalign, namespace: nil
37
+ map_attribute "columnalign", to: :columnalign, namespace: nil
38
+ map_attribute "groupalign", to: :groupalign, namespace: nil
39
+ map_attribute "alignmentscope", to: :alignmentscope, namespace: nil
40
+ map_attribute "columnwidth", to: :columnwidth, namespace: nil
41
+ map_attribute "width", to: :width, namespace: nil
42
+ map_attribute "rowspacing", to: :rowspacing, namespace: nil
43
+ map_attribute "columnspacing", to: :columnspacing, namespace: nil
44
+ map_attribute "rowlines", to: :rowlines, namespace: nil
45
+ map_attribute "columnlines", to: :columnlines, namespace: nil
46
+ map_attribute "frame", to: :frame, namespace: nil
47
+ map_attribute "framespacing", to: :framespacing, namespace: nil
48
+ map_attribute "equalrows", to: :equalrows, namespace: nil
49
+ map_attribute "equalcolumns", to: :equalcolumns, namespace: nil
50
+ map_attribute "displaystyle", to: :displaystyle, namespace: nil
51
+ map_attribute "side", to: :side, namespace: nil
52
+ map_attribute "minlabelspacing", to: :minlabelspacing, namespace: nil
53
+ map_element "mlabeledtr", to: :mlabeledtr_value
54
+ map_element "mtr", to: :mtr_value
55
+ end
56
+ end
57
+ end
data/lib/mml/mtd.rb ADDED
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mml
4
+ class Mtd < Lutaml::Model::Serializable
5
+ attribute :mathcolor, :string
6
+ attribute :mathbackground, :string
7
+ attribute :rowalign, :string
8
+ attribute :columnalign, :string
9
+
10
+ xml do
11
+ root "mtd", mixed: true
12
+
13
+ map_attribute "mathcolor", to: :mathcolor, namespace: nil
14
+ map_attribute "mathbackground", to: :mathbackground, namespace: nil
15
+ map_attribute "rowalign", to: :rowalign, namespace: nil
16
+ map_attribute "columnalign", to: :columnalign, namespace: nil
17
+ end
18
+ end
19
+ end