useless spaces
This commit is contained in:
parent
e6f7cc5539
commit
b2283d5dc3
1 changed files with 3 additions and 3 deletions
6
svg.xsl
6
svg.xsl
|
@ -15,7 +15,7 @@
|
||||||
<xsl:variable name="path">
|
<xsl:variable name="path">
|
||||||
<xsl:call-template name="generatePath">
|
<xsl:call-template name="generatePath">
|
||||||
<xsl:with-param name="idx" select="1" />
|
<xsl:with-param name="idx" select="1" />
|
||||||
<xsl:with-param name="path" select="'M 0 0 '" />
|
<xsl:with-param name="path" select="'M0 0 '" />
|
||||||
</xsl:call-template>
|
</xsl:call-template>
|
||||||
</xsl:variable>
|
</xsl:variable>
|
||||||
|
|
||||||
|
@ -78,13 +78,13 @@
|
||||||
<xsl:when test="name($currentNode) = 'MOVETO'">
|
<xsl:when test="name($currentNode) = 'MOVETO'">
|
||||||
<xsl:call-template name="generatePath">
|
<xsl:call-template name="generatePath">
|
||||||
<xsl:with-param name="idx" select="$idx + 1" />
|
<xsl:with-param name="idx" select="$idx + 1" />
|
||||||
<xsl:with-param name="path" select="concat($path, ' M ', $pos)" />
|
<xsl:with-param name="path" select="concat($path, ' M', $pos)" />
|
||||||
</xsl:call-template>
|
</xsl:call-template>
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
<xsl:otherwise>
|
<xsl:otherwise>
|
||||||
<xsl:call-template name="generatePath">
|
<xsl:call-template name="generatePath">
|
||||||
<xsl:with-param name="idx" select="$idx + 1" />
|
<xsl:with-param name="idx" select="$idx + 1" />
|
||||||
<xsl:with-param name="path" select="concat($path, ' L ', $pos)" />
|
<xsl:with-param name="path" select="concat($path, ' L', $pos)" />
|
||||||
</xsl:call-template>
|
</xsl:call-template>
|
||||||
</xsl:otherwise>
|
</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
|
|
Reference in a new issue