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
data/lib/mml/mtext.rb ADDED
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mml
4
+ class Mtext < 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
+ root "mtext"
20
+
21
+ map_content to: :value
22
+ map_attribute "mathcolor", to: :mathcolor, namespace: nil
23
+ map_attribute "mathbackground", to: :mathbackground, namespace: nil
24
+ map_attribute "mathvariant", to: :mathvariant, namespace: nil
25
+ map_attribute "mathsize", to: :mathsize, namespace: nil
26
+ map_attribute "dir", to: :dir, namespace: nil
27
+ map_attribute "fontfamily", to: :fontfamily, namespace: nil
28
+ map_attribute "fontweight", to: :fontweight, namespace: nil
29
+ map_attribute "fontstyle", to: :fontstyle, namespace: nil
30
+ map_attribute "fontsize", to: :fontsize, namespace: nil
31
+ map_attribute "color", to: :color, namespace: nil
32
+ map_attribute "background", to: :background, namespace: nil
33
+ end
34
+ end
35
+ end
data/lib/mml/mtr.rb ADDED
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mml
4
+ autoload(:Mtd, "mml/mtd")
5
+
6
+ class Mtr < Lutaml::Model::Serializable
7
+ attribute :mathcolor, :string
8
+ attribute :mathbackground, :string
9
+ attribute :rowalign, :string
10
+ attribute :columnalign, :string
11
+ attribute :groupalign, :string
12
+ attribute :mtd_value, Mtd, collection: true
13
+
14
+ xml do
15
+ root "mtr", mixed: true
16
+
17
+ map_attribute "mathcolor", to: :mathcolor, namespace: nil
18
+ map_attribute "mathbackground", to: :mathbackground, namespace: nil
19
+ map_attribute "rowalign", to: :rowalign, namespace: nil
20
+ map_attribute "columnalign", to: :columnalign, namespace: nil
21
+ map_attribute "groupalign", to: :groupalign, namespace: nil
22
+ map_element "mtd", to: :mtd_value
23
+ end
24
+ end
25
+ end
data/lib/mml/munder.rb ADDED
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mml
4
+ class Munder < Lutaml::Model::Serializable
5
+ attribute :mathbackground, :string
6
+ attribute :accentunder, :string
7
+ attribute :mathcolor, :string
8
+ attribute :content, :string
9
+ attribute :align, :string
10
+
11
+ xml do
12
+ root "munder", mixed: true
13
+
14
+ map_attribute "mathbackground", to: :mathbackground, namespace: nil
15
+ map_attribute "accentunder", to: :accentunder, namespace: nil
16
+ map_attribute "mathcolor", to: :mathcolor, namespace: nil
17
+ map_attribute "align", to: :align, namespace: nil
18
+ map_content to: :content
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mml
4
+ class Munderover < Lutaml::Model::Serializable
5
+ attribute :mathcolor, :string
6
+ attribute :mathbackground, :string
7
+ attribute :accent, :string
8
+ attribute :accentunder, :string
9
+ attribute :align, :string
10
+
11
+ xml do
12
+ root "munderover", mixed: true
13
+
14
+ map_attribute "mathcolor", to: :mathcolor, namespace: nil
15
+ map_attribute "mathbackground", to: :mathbackground, namespace: nil
16
+ map_attribute "accent", to: :accent, namespace: nil
17
+ map_attribute "accentunder", to: :accentunder, namespace: nil
18
+ map_attribute "align", to: :align, namespace: nil
19
+ end
20
+ end
21
+ end
data/lib/mml/none.rb ADDED
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mml
4
+ class None < Lutaml::Model::Serializable
5
+ attribute :mathcolor, :string
6
+ attribute :mathbackground, :string
7
+
8
+ xml do
9
+ root "none"
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,6 @@
1
+ <%
2
+ files = Dir["#{__dir__}/*.rb"].reject { |file| ["common_attributes", "opal_setup"].include?(File.basename(file, ".rb")) }
3
+ files.each do |file_name|
4
+ %>
5
+ require 'mml/<%= File.basename(file_name, ".rb") %>'
6
+ <% end %>
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mml
4
+ autoload(:Mi, "mml/mi")
5
+
6
+ class Semantics < Lutaml::Model::Serializable
7
+ attribute :annotation, Mi, collection: true
8
+
9
+ xml do
10
+ root "semantics", mixed: true
11
+
12
+ map_element :annotation, to: :annotation
13
+ end
14
+ end
15
+ end
data/lib/mml/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Mml
4
- VERSION = "0.1.0"
4
+ VERSION = "0.4.5"
5
5
  end
data/lib/mml.rb CHANGED
@@ -1,8 +1,49 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative "mml/version"
3
+ require "lutaml/model"
4
+ require "mml/configuration"
5
+ if RUBY_ENGINE == "opal"
6
+ require_relative "mml/opal_setup"
7
+ else
8
+ files = Dir["lib/mml/*.rb"].reject { |file| File.basename(file, ".*") == "common_attributes" }
9
+ files.each { |file| require_relative "mml/#{File.basename(file, ".rb")}" }
10
+ end
11
+ require "mml/common_attributes"
12
+
13
+ DEFAULT_ADAPTER = if RUBY_ENGINE == "opal"
14
+ require "lutaml/model/xml_adapter/oga_adapter"
15
+ :oga
16
+ else
17
+ require "lutaml/model/xml_adapter/ox_adapter"
18
+ :ox
19
+ end
20
+
21
+ Moxml::Config.default_adapter = DEFAULT_ADAPTER
4
22
 
5
23
  module Mml
6
24
  class Error < StandardError; end
7
- # Your code goes here...
25
+
26
+ module_function
27
+
28
+ def config
29
+ Configuration.config
30
+ end
31
+
32
+ def update_attributes
33
+ Configuration::COMMON_ATTRIBUTES_CLASSES.each do |klass|
34
+ const_get(klass).import_model(CommonAttributes)
35
+ end
36
+ end
37
+
38
+ def parse(input, namespace_exist: true)
39
+ Configuration.adapter = DEFAULT_ADAPTER unless Configuration.adapter
40
+
41
+ if namespace_exist
42
+ Mml::MathWithNamespace.from_xml(input)
43
+ else
44
+ Mml::MathWithNilNamespace.from_xml(input)
45
+ end
46
+ end
8
47
  end
48
+
49
+ Mml.update_attributes
data/mml.gemspec CHANGED
@@ -31,4 +31,5 @@ Gem::Specification.new do |spec|
31
31
  spec.require_paths = ["lib"]
32
32
 
33
33
  spec.add_runtime_dependency "lutaml-model"
34
+ spec.add_runtime_dependency "moxml"
34
35
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mml
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.4.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-10-08 00:00:00.000000000 Z
11
+ date: 2025-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: lutaml-model
@@ -24,6 +24,20 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: moxml
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
27
41
  description: 'MathML parser and builder used in Plurimath.
28
42
 
29
43
  '
@@ -45,6 +59,53 @@ files:
45
59
  - bin/console
46
60
  - bin/setup
47
61
  - lib/mml.rb
62
+ - lib/mml/common_attributes.rb
63
+ - lib/mml/configuration.rb
64
+ - lib/mml/maction.rb
65
+ - lib/mml/maligngroup.rb
66
+ - lib/mml/malignmark.rb
67
+ - lib/mml/math_with_namespace.rb
68
+ - lib/mml/math_with_nil_namespace.rb
69
+ - lib/mml/menclose.rb
70
+ - lib/mml/merror.rb
71
+ - lib/mml/mfenced.rb
72
+ - lib/mml/mfrac.rb
73
+ - lib/mml/mfraction.rb
74
+ - lib/mml/mglyph.rb
75
+ - lib/mml/mi.rb
76
+ - lib/mml/mlabeledtr.rb
77
+ - lib/mml/mlongdiv.rb
78
+ - lib/mml/mmultiscripts.rb
79
+ - lib/mml/mn.rb
80
+ - lib/mml/mo.rb
81
+ - lib/mml/mover.rb
82
+ - lib/mml/mpadded.rb
83
+ - lib/mml/mphantom.rb
84
+ - lib/mml/mprescripts.rb
85
+ - lib/mml/mroot.rb
86
+ - lib/mml/mrow.rb
87
+ - lib/mml/ms.rb
88
+ - lib/mml/mscarries.rb
89
+ - lib/mml/mscarry.rb
90
+ - lib/mml/msgroup.rb
91
+ - lib/mml/msline.rb
92
+ - lib/mml/mspace.rb
93
+ - lib/mml/msqrt.rb
94
+ - lib/mml/msrow.rb
95
+ - lib/mml/mstack.rb
96
+ - lib/mml/mstyle.rb
97
+ - lib/mml/msub.rb
98
+ - lib/mml/msubsup.rb
99
+ - lib/mml/msup.rb
100
+ - lib/mml/mtable.rb
101
+ - lib/mml/mtd.rb
102
+ - lib/mml/mtext.rb
103
+ - lib/mml/mtr.rb
104
+ - lib/mml/munder.rb
105
+ - lib/mml/munderover.rb
106
+ - lib/mml/none.rb
107
+ - lib/mml/opal_setup.rb.erb
108
+ - lib/mml/semantics.rb
48
109
  - lib/mml/version.rb
49
110
  - mml.gemspec
50
111
  - sig/mml.rbs
@@ -67,7 +128,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
67
128
  - !ruby/object:Gem::Version
68
129
  version: '0'
69
130
  requirements: []
70
- rubygems_version: 3.5.11
131
+ rubygems_version: 3.5.22
71
132
  signing_key:
72
133
  specification_version: 4
73
134
  summary: MathML parser by Plurimath.