plurimath 0.8.4 → 0.8.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3de6f5d5b432c5dfdfe1d34a6c076ab653c71ab14a6db6ad3e49c29c3bfc9c48
4
- data.tar.gz: 1c7f1ab5baef71bc88d7e99f05be8be96f3ddcc66c8e6dc928b300ddc97f39d1
3
+ metadata.gz: 4c7657d4a324bfa99582fef0116854399b6edca5fcc2e2a9d9e2ed800555e37b
4
+ data.tar.gz: 8fd6706893097300bd4dc924407d8ab34391a58651722b49103375d1e812b7b3
5
5
  SHA512:
6
- metadata.gz: 380e817bd0ec4fbe93d8699d9c789f7b0c2dc5d13ee0dc8a1f0a6295176d725ce900d8a225eb7ae918b39bb6cfb8d3b5c49cbe797fab43c7d4c2607337efe0cb
7
- data.tar.gz: 3a3149026c98c56d0afc90d30aace9bd0b861d69eb17195de927eeecf1151eb1a9ea39e2d1d7e9bb9bd98ab7aed58cf3aea98c4e663900b70f1d865b520686e2
6
+ metadata.gz: 31eaaade52e25f28e1be17f718a07433ff5b890bbb5cf7ebc4f10f669ea2d14ab054518d0fc8867274247f8b7d1cc546f47fa23f4daa98b6e28ccd5b2b81ffd1
7
+ data.tar.gz: a63d0eff7b2a95149edec5b4e2b0e9c4c6301ddeec08e068efdbc660f85ba08fac81f7c20cf29f6bcb5769ab97340f6f29bf0696449d3aae3361c143c803beab
@@ -109,6 +109,10 @@ module Plurimath
109
109
  def parens_symbols
110
110
  Utility.parens_hash(:asciimath).keys.delete_if { |sym| SKIP_INPUT_PARENS.include?(sym) }
111
111
  end
112
+
113
+ def absent_symbols
114
+ wrapper_symbols.concat(parens_symbols)
115
+ end
112
116
  end
113
117
  end
114
118
  end
@@ -5,7 +5,7 @@ module Plurimath
5
5
  class Asciimath
6
6
  class Parse < Parslet::Parser
7
7
  rule(:td) { expression.as(:td) }
8
- rule(:base) { arr_to_expression(Constants.wrapper_symbols, :symbol).absent? >> str("_") }
8
+ rule(:base) { arr_to_expression(Constants.absent_symbols, :symbol).absent? >> str("_") }
9
9
  rule(:power) { str("^") }
10
10
  rule(:space) { match(/\s+/) }
11
11
  rule(:comma) { (str(",") >> space?) }
@@ -26,7 +26,7 @@ module Plurimath
26
26
  end
27
27
 
28
28
  def to_mathml_without_math_tag
29
- ox_element("mi") << encoded
29
+ ox_element("mo") << encoded
30
30
  end
31
31
 
32
32
  def to_omml_without_math_tag(_)
@@ -26,7 +26,7 @@ module Plurimath
26
26
  end
27
27
 
28
28
  def to_mathml_without_math_tag
29
- ox_element("mi") << encoded
29
+ ox_element("mo") << encoded
30
30
  end
31
31
 
32
32
  def to_omml_without_math_tag(_)
@@ -26,7 +26,7 @@ module Plurimath
26
26
  end
27
27
 
28
28
  def to_mathml_without_math_tag
29
- ox_element("mi") << encoded
29
+ ox_element("mo") << encoded
30
30
  end
31
31
 
32
32
  def to_omml_without_math_tag(_)
@@ -3,10 +3,10 @@ module Plurimath
3
3
  module Symbols
4
4
  class Prime < Symbol
5
5
  INPUT = {
6
- unicodemath: ["&#x2032;", "prime"],
7
- asciimath: ["&#x2032;", "prime"],
6
+ unicodemath: ["&#x2032;", "prime", "'"],
7
+ asciimath: ["&#x2032;", "prime", "'"],
8
8
  mathml: ["&#x2032;"],
9
- latex: ["&#x2032;", "prime"],
9
+ latex: ["&#x2032;", "prime", "'"],
10
10
  omml: ["&#x2032;"],
11
11
  html: ["&#x2032;"],
12
12
  }.freeze
@@ -3,10 +3,10 @@ module Plurimath
3
3
  module Symbols
4
4
  class Sprime < Symbol
5
5
  INPUT = {
6
- unicodemath: ["&#x27;", "'"],
7
- asciimath: ["&#x27;", "'"],
6
+ unicodemath: ["&#x27;"],
7
+ asciimath: ["&#x27;"],
8
8
  mathml: ["&#x27;"],
9
- latex: ["&#x27;", "'"],
9
+ latex: ["&#x27;"],
10
10
  omml: ["&#x27;"],
11
11
  html: ["&#x27;"],
12
12
  }.freeze
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Plurimath
4
- VERSION = "0.8.4"
4
+ VERSION = "0.8.5"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: plurimath
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.4
4
+ version: 0.8.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-06-02 00:00:00.000000000 Z
11
+ date: 2024-06-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: twitter_cldr