htmltoooxml 0.3.4 → 0.3.5
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/htmltoooxml/version.rb +1 -1
- data/lib/htmltoooxml/xslt/base.xslt +13 -39
- 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: a3490237d4b5bac8d9ffe29f2f6a47c4af597c7a3897425224f2089cf278b08b
|
4
|
+
data.tar.gz: f94ff06a8aa33ffa86f62784c63b430d48f2d37e0591c611df14457057064c9c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4ad95072c5f149593d31a5b711da72b23bcacbd634e201d3784b6a526f90f9c9383656016a0f9d98cdf97822c07bb67b806ac12ffb99433c5f761b283f799d3
|
7
|
+
data.tar.gz: b2f8ac9b9010f7347f46da7842d2de78a74574ed56d6dce55a621dc20efa705c0c6d857eaddb332f06780a2baac7b153f67497fff13e1770010a847754bb7ac9
|
data/lib/htmltoooxml/version.rb
CHANGED
@@ -137,52 +137,26 @@
|
|
137
137
|
<xsl:variable name="ilvl" select="count(ancestor::ol) + count(ancestor::ul) - 1"></xsl:variable>
|
138
138
|
<xsl:choose>
|
139
139
|
<xsl:when test="$preceding-siblings + count(preceding-sibling::*) > 0">
|
140
|
-
<a:lstStyle>
|
141
|
-
<a:lvl2pPr marL="868680" indent="-283464" algn="ctr" rtl="0" ealnBrk="1" latinLnBrk="0" hangingPunct="1">
|
142
|
-
<a:spcBef>
|
143
|
-
<a:spcPct val="20000"/>
|
144
|
-
</a:spcBef>
|
145
|
-
<a:buClr>
|
146
|
-
<a:schemeClr val="tx1"/>
|
147
|
-
</a:buClr>
|
148
|
-
<a:buSzPct val="80000"/>
|
149
|
-
<a:buFont typeface="Wingdings2"/>
|
150
|
-
<a:buChar char="•"/>
|
151
|
-
<a:defRPr sz="2400" kern="1200">
|
152
|
-
. . .
|
153
|
-
</a:defRPr>
|
154
|
-
</a:lvl2pPr>
|
155
|
-
</a:lstStyle>
|
156
140
|
<a:p>
|
157
141
|
<a:r>
|
158
|
-
<a:
|
142
|
+
<a:pPr>
|
143
|
+
<a:buFont typeface="Wingdings"/>
|
144
|
+
<a:buChar char="."/>
|
145
|
+
</a:pPr>
|
159
146
|
<a:t><xsl:value-of select="."/></a:t>
|
160
147
|
</a:r>
|
161
148
|
</a:p>
|
162
149
|
</xsl:when>
|
163
150
|
<xsl:otherwise>
|
164
|
-
<a:
|
165
|
-
<a:
|
166
|
-
<a:
|
167
|
-
<a:
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
<a:buFont typeface="Wingdings2"/>
|
174
|
-
<a:buChar char="•"/>
|
175
|
-
<a:defRPr sz="2400" kern="1200">
|
176
|
-
. . .
|
177
|
-
</a:defRPr>
|
178
|
-
</a:lvl2pPr>
|
179
|
-
</a:lstStyle>
|
180
|
-
<a:p>
|
181
|
-
<a:r>
|
182
|
-
<a:rPr dirty="0"/>
|
183
|
-
<a:t><xsl:value-of select="."/></a:t>
|
184
|
-
</a:r>
|
185
|
-
</a:p>
|
151
|
+
<a:p>
|
152
|
+
<a:r>
|
153
|
+
<a:pPr>
|
154
|
+
<a:buFont typeface="Wingdings"/>
|
155
|
+
<a:buChar char="."/>
|
156
|
+
</a:pPr>
|
157
|
+
<a:t><xsl:value-of select="."/></a:t>
|
158
|
+
</a:r>
|
159
|
+
</a:p>
|
186
160
|
</xsl:otherwise>
|
187
161
|
</xsl:choose>
|
188
162
|
</xsl:when>
|