avv2word 1.1.2 → 1.1.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 +4 -4
- data/lib/avv2word/version.rb +1 -1
- data/lib/avv2word/xslt/numbering.xslt +7 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d3a96466517bf5bfffadddcdae7ee81e8bd4686d
|
|
4
|
+
data.tar.gz: 52f50228e95ff23d299455c8b3f4ce40e7c2d4c8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ed00b020a2d6f5ad1cd531f1ea443d2f61b8d55765814a374d92bbe86e4b7f01b92c1aabf442b689042a8202812b5b20bd52f1915f817d43225a70b54100a611
|
|
7
|
+
data.tar.gz: d78eb4e2e6d492b77704bcd80914d3a011bb1465adfac21cce49088645efc54bf70accc251ccd95af1c463e8cb1db4f31225e9e30afa924786a97530f66ee1ea
|
data/lib/avv2word/version.rb
CHANGED
|
@@ -73,6 +73,7 @@
|
|
|
73
73
|
<xsl:with-param name="indent" select="@indent"/>
|
|
74
74
|
<xsl:with-param name="hanging" select="@hanging"/>
|
|
75
75
|
<xsl:with-param name="style-format" select="@style-format"/>
|
|
76
|
+
<xsl:with-param name="indented-first" select="@indented-first"/>
|
|
76
77
|
</xsl:call-template>
|
|
77
78
|
<xsl:call-template name="item"/>
|
|
78
79
|
</w:abstractNum>
|
|
@@ -118,11 +119,17 @@
|
|
|
118
119
|
<xsl:param name="indent" />
|
|
119
120
|
<xsl:param name="hanging" />
|
|
120
121
|
<xsl:param name="style-format" />
|
|
122
|
+
<xsl:param name="indented-first" />
|
|
121
123
|
<w:lvl w:ilvl="{$ilvl}">
|
|
122
124
|
<w:start w:val="1"/>
|
|
123
125
|
<w:numFmt w:val="{func:substring-before-if-contains($style, ',')}"/>
|
|
124
126
|
<w:lvlText w:val="{$style-format}"/>
|
|
125
127
|
<w:lvlJc w:val="left"/>
|
|
128
|
+
<xsl:if test="$indented-first > 0">
|
|
129
|
+
<w:tabs>
|
|
130
|
+
<w:tab w:val="num" w:pos="{$indented-first}"/>
|
|
131
|
+
</w:tabs>
|
|
132
|
+
</xsl:if>
|
|
126
133
|
<w:pPr>
|
|
127
134
|
<w:ind w:left="{$indent}" w:hanging="{$hanging}"/>
|
|
128
135
|
</w:pPr>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: avv2word
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marián Bilas
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-05-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: actionpack
|