diff options
author | Fredrik Åslund <fredrik.aslund@umu.se> | 2013-06-28 13:13:58 +0200 |
---|---|---|
committer | Fredrik Åslund <fredrik.aslund@umu.se> | 2013-06-28 13:13:58 +0200 |
commit | af506d18f887c0e0558338d30f32af9029bacd08 (patch) | |
tree | 665a32d3565244c8c7b04765b713bae65d190140 /xslt | |
parent | 54368ff640284e05a307b318d4a13b421177d389 (diff) |
confluence requires a newline before \\ in complex text
Diffstat (limited to 'xslt')
-rw-r--r-- | xslt/sp-summary.xslt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xslt/sp-summary.xslt b/xslt/sp-summary.xslt index cc6b0056..d54141c2 100644 --- a/xslt/sp-summary.xslt +++ b/xslt/sp-summary.xslt @@ -66,7 +66,7 @@ <xsl:with-param name="replace" select="'-'" /> <xsl:with-param name="by" select="'&#x2011;'" /> </xsl:call-template> - <xsl:text>\\</xsl:text> + <xsl:text> \\</xsl:text> </xsl:template> <xsl:template match="md:ContactPerson"> @@ -84,7 +84,7 @@ </xsl:template> <xsl:template match="md:EmailAddress"> - <xsl:value-of select="text()"/><xsl:text>\\</xsl:text> + <xsl:value-of select="text()"/><xsl:text> \\</xsl:text> </xsl:template> <xsl:template match="md:OrganizationDisplayName"> |