jekyll-wns 4.2.2 → 4.2.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '09a1f012682314531e7d5cd5661958b625185da3a6588fe07ef82af93c975c0d'
4
- data.tar.gz: 841863d7aa27f0aba8334396cdb8484a395fd3ac8831a4662a485bc38f9b7b29
3
+ metadata.gz: a4f1cda838daed7f4d7a31f3bd9b8d4f375e0ea2ec7d650bbb178574e19867d1
4
+ data.tar.gz: 34313ef55bdce009a6b7ea55d3954b274159921e6a3961c3f700a905c5baff49
5
5
  SHA512:
6
- metadata.gz: 5cb7c3e18ae6e2d4d84f1accd64d20d79a07ac4e304150f361935c1fbc2fcb85dc1fe95e725a680ca3e6bf198bfcd87e7e49a91d07ab074fa2c24b21cccf4f7e
7
- data.tar.gz: 42ab60840ecd481be7ffcf52301d85b815bc287ada3c7bd104939027bc7578de041da01a1326a5ad5731a49e303dcdbed97b58d35a2c1d5ca9cd2020bd279774
6
+ metadata.gz: c15c3b9a8f5daedb9c658c9ffd84d4404baff3fc3f352e92dc059019ea077ccb990d41f34006fd5ab36de94059840c6d08aafea9053c1cd1dd58374c2d896f61
7
+ data.tar.gz: 431dd444a0319cac151a9c3add92689a99ab2851953f2c186a4d9b18981972068bd89a1c36ac48eb9813c1f62fccb3461d272127a4aba49ddcb82213fcb35b53
data/jekyll-wns.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "jekyll-wns"
5
- spec.version = "4.2.2"
5
+ spec.version = "4.2.5"
6
6
  spec.authors = ["Thai Chung"]
7
7
  spec.email = ["mail@0xReki.de"]
8
8
  spec.summary = "Collection of Filters, Tags and Hooks I use."
@@ -7,13 +7,11 @@ module WNS
7
7
  labels.length > 0
8
8
  end
9
9
 
10
- def self.label_unicode!(doc)
11
- if LabelUnicode::enabled?(doc)
12
- wns = doc.site.config["wns"] || {}
13
- labels = wns["label_pronounciation"] || false
14
- for i in (0..(labels.length()) - 1) do
15
- doc.content = doc.content.gsub(Regexp.new("\b(#{labels[i]["term"]})\b"), "<span aria-label='#{labels[i]["pronounciation"]}'>\\1</span>")
16
- end
10
+ def self.label_pronounciation!(doc)
11
+ wns = doc.site.config["wns"] || {}
12
+ labels = wns["label_pronounciation"] || false
13
+ for i in (0..(labels.length()) - 1) do
14
+ doc.content = doc.content.gsub(Regexp.new("\b(#{labels[i]["term"]})\b"), "<span aria-label='#{labels[i]["pronounciation"]}'>\\1</span>")
17
15
  end
18
16
  end
19
17
  end
@@ -2,24 +2,23 @@ Jekyll::Hooks.register :pages, :pre_render do |document|
2
2
  if document.path =~ /(.md|.html)/
3
3
  WNS::Abbreviations::replace_abbreviations! document
4
4
  WNS::LabelUnicode::label_unicode! document
5
- WNS::LabelPronounciation::label_unicode! document
5
+ WNS::LabelPronounciation::label_pronounciation! document
6
6
  WNS::Quads::insert_quads_into_document! document
7
7
  end
8
8
  end
9
9
 
10
10
  Jekyll::Hooks.register :pages, :post_render do |document|
11
11
  if document.path =~ /(.md|.html)/
12
- true
12
+ WNS::LabelPronounciation::label_pronounciation! document
13
13
  end
14
14
  end
15
15
 
16
16
  Jekyll::Hooks.register :posts, :pre_render do |document|
17
17
  WNS::Abbreviations::replace_abbreviations! document
18
18
  WNS::LabelUnicode::label_unicode! document
19
- WNS::LabelPronounciation::label_unicode! document
20
19
  WNS::Quads::insert_quads_into_document! document
21
20
  end
22
21
 
23
22
  Jekyll::Hooks.register :posts, :post_render do |document|
24
- true
23
+ WNS::LabelPronounciation::label_pronounciation! document
25
24
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-wns
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.2
4
+ version: 4.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thai Chung
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-03 00:00:00.000000000 Z
11
+ date: 2022-03-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ruby-mp3info