jekyll-wns 4.2.2 → 4.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/jekyll-wns.gemspec +1 -1
- data/lib/jekyll-wns/assets/label_pronounciation.rb +2 -2
- data/lib/jekyll-wns/register_hooks.rb +3 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b8350877bd321d5dfac3f0dccfa0948b465c4e6da9bbab5940ac7632b78f276
|
4
|
+
data.tar.gz: 4c6b98b9e49be9ef52676690a3d852267f5f399780b2e11fa3d91324418cccb5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ca1721d9cba746a21c27d2cd7a5c3ba838174895a8f395379f56997e66e540652032deae64a0e23ed4ab428c165e8ee5af88a41d69d551da256d4bab3e3a702
|
7
|
+
data.tar.gz: 9f3d4c16938369be6fcbb8166c5563b1d846862cb43a4168e57acbe5c159d2b5a89966a44949ccfbb29fd691aa6fd4da645a29a33621a697b29ff4ec39cc2bdf
|
data/jekyll-wns.gemspec
CHANGED
@@ -7,8 +7,8 @@ module WNS
|
|
7
7
|
labels.length > 0
|
8
8
|
end
|
9
9
|
|
10
|
-
def self.
|
11
|
-
if
|
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::
|
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
|
-
|
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
|
-
|
23
|
+
WNS::LabelPronounciation::label_pronounciation document
|
25
24
|
end
|