metanorma-itu 0.2.10 → 1.0.0
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a01b41f5c9f8d50fb914d13b31886549d419b83e8d034c0ca4e5d9e994761432
|
|
4
|
+
data.tar.gz: e800c96be0ffd2c15c1843a2f40a43b794db520d7ce4f49eb00bab5ad83f3598
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e3c84c117a175f638dc17acd752d9fa6009e0d211b7b2c36490c53f4d6325515ec901790266ad3f3222d20a0f47a9c2cf899b0d90fa9c395f3e5c31b546d3d91
|
|
7
|
+
data.tar.gz: 8b72c08d2ff1bd1933c1bb0227d99768b202f2671d217b556e39de208f67d112f09c1ebba12d4f90699ecc3be02c04e384aae470687c235b24a1b8a711e66b33
|
|
@@ -17,8 +17,9 @@ module Asciidoctor
|
|
|
17
17
|
return super if @smartquotes
|
|
18
18
|
xmldoc.traverse do |n|
|
|
19
19
|
next unless n.text?
|
|
20
|
-
n.replace(
|
|
21
|
-
|
|
20
|
+
n.replace(HTMLEntities.new.encode(
|
|
21
|
+
n.text.gsub(/\u2019|\u2018|\u201a|\u201b/, "'").
|
|
22
|
+
gsub(/\u201c|\u201d|\u201e|\u201f/, '"'), :basic))
|
|
22
23
|
end
|
|
23
24
|
xmldoc
|
|
24
25
|
end
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
</div>
|
|
46
46
|
|
|
47
47
|
<div class="coverpage-title">
|
|
48
|
-
<span class="doc-series">Series {{ series }}</span>
|
|
48
|
+
<span class="doc-series">{% if series %}Series {{ series }}{% endif %}</span>
|
|
49
49
|
|
|
50
50
|
<span class="doc-subSeries">
|
|
51
51
|
{{ series1 }} {% if series2 %}— {{ series2 }}{% endif %}
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
<p class="MsoNormal" align="left" style='text-align:left;tab-stops:39.7pt 59.55pt 79.4pt 99.25pt right 17.0cm'><span
|
|
170
170
|
style='mso-bookmark:_Hlk526346232'><a name="dsece"><span lang="EN-US"
|
|
171
171
|
style='font-size:16.0pt;mso-bidi-font-size:10.0pt;font-family:"Arial",sans-serif;
|
|
172
|
-
mso-ansi-language:EN-US'>SERIES {{ series | upcase }}<o:p></o:p></span></a></span></p>
|
|
172
|
+
mso-ansi-language:EN-US'>{% if series %}SERIES {{ series | upcase }}{% endif %}<o:p></o:p></span></a></span></p>
|
|
173
173
|
<p class="MsoNormal" align="left" style='text-align:left;tab-stops:39.7pt 59.55pt 79.4pt 99.25pt right 17.0cm'><span
|
|
174
174
|
style='mso-bookmark:_Hlk526346232'><span style='mso-bookmark:dsece'><span
|
|
175
175
|
lang="EN-US" style='font-size:16.0pt;mso-bidi-font-size:10.0pt;font-family:
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: metanorma-itu
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-11-
|
|
11
|
+
date: 2019-11-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: htmlentities
|