cancel
Showing results for 
Search instead for 
Did you mean: 

XSLT code for new line

former_member189354
Contributor
0 Kudos

Hi,

How to create a line break using XSLT? . Appreciate for your response.

Regards,

Mallikarjun.M

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member189558
Contributor
0 Kudos

Are you sure you want to create a line break?

Probably you are using HTML output type.... if yes then you can simply use <[BR]>

Cheers,

Himadri

Message was edited by:

Himadri Chakraborty

Shabarish_Nair
Active Contributor
0 Kudos

try;

<xsl:text>*#10;</xsl:text>

or

<xsl:text>*#xA;</xsl:text>

note: Replace * by & in the real coding.

Message was edited by:

Shabarish Vijayakumar