I am passing string input parameter as below to XSLT,
passId=" Line1 | Line 2| Line3";
Accessing in XSLT as below :
<xsl:param name="passId"/>
<xsl:template match="/">
<html>
<head></head>
<xsl:value-of select="$passId"/>
<br/>
</html>
</xsl:template>
Expected output is in new line each:
Line1
Line2
Line3
How we achieve this output using XSLT template.
Actual input -- Line1 | Line 2| Line3";
Expected Output:
Line1
Line2
Line3
As above in XSLT all are printing in same line.