xslt - new line in xsl but the code is not working -
in search result display xsl added following code none of them giving me new line.
<xsl:text> &#10; </xsl:text> <xsl:text> </xsl:text> <xsl:text disable-output-escaping="yes" >&#10;</xsl:text>
if output html xslt , want line break use br element e.g. <br/>, see http://www.w3.org/tr/html4/struct/text.html#h-9.3.2.1. character treated white space , not result in line break unless used inside pre element or other element css defining white-space: pre.
Comments
Post a Comment