0
改行(

)を<br />
に置き換えようとしています。しかし、私は実際の<br />
タグを表示することはできません。XSLT 1.0で文字列をHTMLに置き換えます。
呼び出し:
<xsl:variable name="br"><br /></xsl:variable>
<xsl:call-template name="string-replace-all">
<xsl:with-param name="text" select="@SolutionNote" />
<xsl:with-param name="replace" select="'
'" />
<xsl:with-param name="by" select="$br" />
</xsl:call-template>
string-replace-all
はthis質問(クイックリファレンスのためにここに貼り付け)で与えられた答えから取得されます:代わりに$br
の文字列リテラルと
<xsl:template name="string-replace-all">
<xsl:param name="text" />
<xsl:param name="replace" />
<xsl:param name="by" />
<xsl:choose>
<xsl:when test="$text = '' or $replace = ''or not($replace)" >
<!-- Prevent this routine from hanging -->
<xsl:value-of select="$text" />
</xsl:when>
<xsl:when test="contains($text, $replace)">
<xsl:value-of select="substring-before($text,$replace)" />
<xsl:value-of select="$by" />
<xsl:call-template name="string-replace-all">
<xsl:with-param name="text" select="substring-after($text,$replace)" />
<xsl:with-param name="replace" select="$replace" />
<xsl:with-param name="by" select="$by" />
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$text" />
</xsl:otherwise>
</xsl:choose>
</xsl:template>
テストがあることを確認確かに置き換えられているもの。改行自体もなくなりました。一見無意味なものに置き換えられました。 br
変数を宣言/使用する正しい方法は何ですか?