jekyll-geolexica 1.9.2 → 1.9.4

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: e9bd91cb309055026c71c87645e7196ff3d4b3116de988a8499ef49805b6f72b
4
- data.tar.gz: 6c2a5bebd531945f9d75f9e7c64e515b6292fd488b81a157421aa4852e62cb15
3
+ metadata.gz: 54ef6e2ff64adbeb051156e27b33475ecd06a0c321ab219ea1d144ae574e30bf
4
+ data.tar.gz: 826be73dd58f922954a2e8c6ab4a1b1d26d92bcdf58ae6f7006d1c79cee71b00
5
5
  SHA512:
6
- metadata.gz: e90fb75be8eb7f4b77ea2cd5801da1e3678c43837686130ddecce1917a7a8b23596574d973f5d8795a899562e3eab91407c520fda05492d39288fd3d60d2c480
7
- data.tar.gz: 55b7408414a081804d8c2f6b988f79a21f7ced484a8acc4fb57d29cb762b1e043459a25545a10bbb4e2f90b2250a7312fa677ff9baf0e3cd799b4597f522d54d
6
+ metadata.gz: 0101aa6b4f1514454f25241744e6a9cc4c0b6bec0693ba033b5e9e8d06a7d0c52c2f2ca97f3b9144cc60dd9fe516426f4704ef5682a18d219cb56160993c5f62
7
+ data.tar.gz: 615062f04d0e212131eabfe49a5fba990536ee81acd109b72a394d6445c502b5d94933da6a1b21104cebb3a207c973152522e165d6f9ddc26d8961a22e76b06c
@@ -3,6 +3,7 @@
3
3
  {%- assign term_status = english.entry_status -%}
4
4
  {%- assign classification = english.terms.first.normative_status -%}
5
5
  {%- assign english_authoritative_source = english.sources | get_authoritative -%}
6
+ {%- assign english_authoritative_sources = english.sources | get_all_authoritative_sources -%}
6
7
  {%- assign localized_authoritative_source = localized_term.sources | get_authoritative -%}
7
8
 
8
9
  <article
@@ -114,7 +115,7 @@
114
115
  <p class="origin localized">
115
116
  {% if lang == "eng" %}
116
117
  [SOURCE:
117
- {% for source in english.sources %}
118
+ {% for source in english_authoritative_sources %}
118
119
  {{ source | display_authoritative_source }}{% unless forloop.last %};{% endunless %}
119
120
  {%- endfor -%}
120
121
  ]
@@ -204,6 +204,10 @@ module Jekyll
204
204
  def get_authoritative(sources)
205
205
  sources&.find { |source| source["type"] == "authoritative" }
206
206
  end
207
+
208
+ def get_all_authoritative_sources(sources)
209
+ sources&.select { |source| source["type"] == "authoritative" }
210
+ end
207
211
  end
208
212
  end
209
213
  end
@@ -30,23 +30,37 @@ module Jekyll
30
30
  end
31
31
 
32
32
  def convert_math(page)
33
- page.output.gsub!(/stem:\[([^\]]*?)\]/) do
34
- ascii_equation = CGI.unescapeHTML(Regexp.last_match[1])
33
+ prefix_hash = {
34
+ asciimath: "stem",
35
+ latex: "latexmath",
36
+ }
35
37
 
36
- mathml_equation = ::Plurimath::Math
37
- .parse(ascii_equation, :asciimath)
38
- .to_mathml
38
+ prefix_hash.each do |math_notation, prefix|
39
+ page.output.gsub!(/#{prefix}:(?<re>\[((?>[^\[\]]+)|\g<re>)*\])/) do
40
+ ascii_equation = CGI.unescapeHTML(Regexp.last_match[1])[1..-2]
39
41
 
40
- # temporary hack to use display inline for math equations because
41
- # currently there is no option to use display inline in plurimath
42
- mathml_equation.gsub!("display=\"block\"", "display=\"inline\"")
42
+ mathml_equation = ::Plurimath::Math
43
+ .parse(ascii_equation, math_notation)
44
+ .to_mathml
43
45
 
44
- # Removing newlines(\n) and escaping double quotes(")
45
- # because they will cause parsing issues in json
46
- mathml_equation.gsub!("\n", "").gsub!("\"", "\\\"") unless page.html?
47
-
48
- mathml_equation
46
+ normalize_mathml(mathml_equation, page.html?)
47
+ end
49
48
  end
49
+ rescue => e
50
+ # Skipping broken formulas
51
+ Jekyll.logger.info(e.message)
52
+ end
53
+
54
+ def normalize_mathml(mathml_equation, is_html)
55
+ # temporary hack to use display inline for math equations because
56
+ # currently there is no option to use display inline in plurimath
57
+ mathml_equation = mathml_equation.gsub("display=\"block\"", "display=\"inline\"")
58
+
59
+ # Removing newlines(\n) and escaping double quotes(")
60
+ # because they will cause parsing issues in json
61
+ mathml_equation = mathml_equation.gsub("\n", "").gsub("\"", "\\\"") unless is_html
62
+
63
+ mathml_equation
50
64
  end
51
65
 
52
66
  def hook event, target, action
@@ -3,6 +3,6 @@
3
3
 
4
4
  module Jekyll
5
5
  module Geolexica
6
- VERSION = "1.9.2".freeze
6
+ VERSION = "1.9.4".freeze
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-geolexica
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.2
4
+ version: 1.9.4
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-03-27 00:00:00.000000000 Z
11
+ date: 2024-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: glossarist