jekyll-wns 4.2.2 → 4.2.3

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: '09a1f012682314531e7d5cd5661958b625185da3a6588fe07ef82af93c975c0d'
4
- data.tar.gz: 841863d7aa27f0aba8334396cdb8484a395fd3ac8831a4662a485bc38f9b7b29
3
+ metadata.gz: 7b8350877bd321d5dfac3f0dccfa0948b465c4e6da9bbab5940ac7632b78f276
4
+ data.tar.gz: 4c6b98b9e49be9ef52676690a3d852267f5f399780b2e11fa3d91324418cccb5
5
5
  SHA512:
6
- metadata.gz: 5cb7c3e18ae6e2d4d84f1accd64d20d79a07ac4e304150f361935c1fbc2fcb85dc1fe95e725a680ca3e6bf198bfcd87e7e49a91d07ab074fa2c24b21cccf4f7e
7
- data.tar.gz: 42ab60840ecd481be7ffcf52301d85b815bc287ada3c7bd104939027bc7578de041da01a1326a5ad5731a49e303dcdbed97b58d35a2c1d5ca9cd2020bd279774
6
+ metadata.gz: 1ca1721d9cba746a21c27d2cd7a5c3ba838174895a8f395379f56997e66e540652032deae64a0e23ed4ab428c165e8ee5af88a41d69d551da256d4bab3e3a702
7
+ data.tar.gz: 9f3d4c16938369be6fcbb8166c5563b1d846862cb43a4168e57acbe5c159d2b5a89966a44949ccfbb29fd691aa6fd4da645a29a33621a697b29ff4ec39cc2bdf
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.3"
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,8 +7,8 @@ module WNS
7
7
  labels.length > 0
8
8
  end
9
9
 
10
- def self.label_unicode!(doc)
11
- if LabelUnicode::enabled?(doc)
10
+ def self.label_pronounciation!(doc)
11
+ if LabelPronounciation::enabled?(doc)
12
12
  wns = doc.site.config["wns"] || {}
13
13
  labels = wns["label_pronounciation"] || false
14
14
  for i in (0..(labels.length()) - 1) do
@@ -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,7 +1,7 @@
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.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thai Chung