plurimath 0.8.4 → 0.8.6
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 +4 -4
- data/lib/plurimath/asciimath/constants.rb +4 -0
- data/lib/plurimath/asciimath/parse.rb +1 -1
- data/lib/plurimath/math/symbols/backslash.rb +5 -5
- data/lib/plurimath/math/symbols/paren/lfloor.rb +1 -1
- data/lib/plurimath/math/symbols/paren/rceil.rb +1 -1
- data/lib/plurimath/math/symbols/paren/rfloor.rb +1 -1
- data/lib/plurimath/math/symbols/prime.rb +3 -3
- data/lib/plurimath/math/symbols/sprime.rb +3 -3
- data/lib/plurimath/utility.rb +2 -2
- data/lib/plurimath/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c30796b1e8f3dc56d40ceef4b2514dadf60a951f55fabb89177abb2431333e62
|
4
|
+
data.tar.gz: 16f211f6fc509983f762d119e0f736cee4670295d24a14d16177f029c8a1d898
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 01c6f282735448b7e776a76d7d3d458ba01276162cc999330125e20c1a7972d8c2aa18bdee3512256ab403a2beb0f605e0493e774f44077cc1da462e51895e33
|
7
|
+
data.tar.gz: e7a9152de4bcdd8aeb9ef01b78f12b38900d72f2fab51d8ba439dc1614f92ada6128c2225eaa8ed1f0d28e19e689fa1739725008422b090870b2927dfaf43358
|
@@ -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.
|
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?) }
|
@@ -3,10 +3,10 @@ module Plurimath
|
|
3
3
|
module Symbols
|
4
4
|
class Backslash < Symbol
|
5
5
|
INPUT = {
|
6
|
-
unicodemath: [["\"], parsing_wrapper(["backslash"])],
|
7
|
-
asciimath: [
|
6
|
+
unicodemath: [["\"], parsing_wrapper(["backslash", "\\"])],
|
7
|
+
asciimath: ["backslash", "\", "\\"],
|
8
8
|
mathml: ["\"],
|
9
|
-
latex: [["backslash", "\"]],
|
9
|
+
latex: [["backslash", "\"], parsing_wrapper(["\\"])],
|
10
10
|
omml: ["\"],
|
11
11
|
html: ["\"],
|
12
12
|
}.freeze
|
@@ -17,7 +17,7 @@ module Plurimath
|
|
17
17
|
end
|
18
18
|
|
19
19
|
def to_asciimath
|
20
|
-
"
|
20
|
+
"\\"
|
21
21
|
end
|
22
22
|
|
23
23
|
def to_unicodemath
|
@@ -25,7 +25,7 @@ module Plurimath
|
|
25
25
|
end
|
26
26
|
|
27
27
|
def to_mathml_without_math_tag
|
28
|
-
ox_element("
|
28
|
+
ox_element("mo") << "\\"
|
29
29
|
end
|
30
30
|
|
31
31
|
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: ["′", "prime"],
|
7
|
-
asciimath: ["′", "prime"],
|
6
|
+
unicodemath: ["′", "prime", "'"],
|
7
|
+
asciimath: ["′", "prime", "'"],
|
8
8
|
mathml: ["′"],
|
9
|
-
latex: ["′", "prime"],
|
9
|
+
latex: ["′", "prime", "'"],
|
10
10
|
omml: ["′"],
|
11
11
|
html: ["′"],
|
12
12
|
}.freeze
|
@@ -3,10 +3,10 @@ module Plurimath
|
|
3
3
|
module Symbols
|
4
4
|
class Sprime < Symbol
|
5
5
|
INPUT = {
|
6
|
-
unicodemath: ["'"
|
7
|
-
asciimath: ["'"
|
6
|
+
unicodemath: ["'"],
|
7
|
+
asciimath: ["'"],
|
8
8
|
mathml: ["'"],
|
9
|
-
latex: ["'"
|
9
|
+
latex: ["'"],
|
10
10
|
omml: ["'"],
|
11
11
|
html: ["'"],
|
12
12
|
}.freeze
|
data/lib/plurimath/utility.rb
CHANGED
@@ -270,7 +270,7 @@ module Plurimath
|
|
270
270
|
def symbols_hash(lang)
|
271
271
|
@@symbols ||= {}
|
272
272
|
lang_symbols = @@symbols[lang]
|
273
|
-
return lang_symbols if lang_symbols && lang_symbols.empty?
|
273
|
+
return lang_symbols if lang_symbols && !lang_symbols.empty?
|
274
274
|
|
275
275
|
lang_symbols = {}
|
276
276
|
symbols_files.map do |file_name|
|
@@ -290,7 +290,7 @@ module Plurimath
|
|
290
290
|
def parens_hash(lang, skipables: nil)
|
291
291
|
@@parens ||= {}
|
292
292
|
lang_parens = @@parens[lang]
|
293
|
-
return lang_parens if lang_parens && lang_parens.empty?
|
293
|
+
return lang_parens if lang_parens && !lang_parens.empty?
|
294
294
|
|
295
295
|
lang_parens = {}
|
296
296
|
paren_files.map do |file_name|
|
data/lib/plurimath/version.rb
CHANGED
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
|
+
version: 0.8.6
|
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-
|
11
|
+
date: 2024-06-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: twitter_cldr
|