up vote 18 down vote favorite
4
share [g+] share [fb]

I want to produce a newline for text output in XSLT. Any ideas?

Thanks

link|improve this question

52% accept rate
feedback

5 Answers

Include the attribute Method="text" on the xsl:output tag and include newlines in your literal content in the XSL at the appropriate points. If you prefer to keep the source code of your XSL tidy use the entity 
 where you want a new line.

link|improve this answer
feedback

My favoured method for doing this looks something like:

<xsl:stylesheet>

<xsl:output method='text'/>

<xsl:variable name='newline'><xsl:text>
</xsl:text></xsl:variable>

<!-- note that the layout there is deliberate -->

...

</xsl:stylesheet>

Then, whenever you want to output a newline (perhaps in csv) you can output something like:

<xsl:value-of select="concat(elem1,elem2,elem3,$newline") />

I've used this technique when outputting sql from xml input. In fact, I tend to create variables for commas, quotes and newlines.

link|improve this answer
feedback

You can use:

<xsl:text>&#xa;</xsl:text>

I used this type of writing code to insert and use xslt in sql server tables, and works ... .

link|improve this answer
feedback

You can use: <xsl:text>&#10;</xsl:text>

see the example

<xsl:variable name="module-info"><xsl:value-of select="@name" /> = <xsl:value-of select="@rev" /><xsl:text>&#10;</xsl:text></xsl:variable>

if you write this in file e.g.

<redirect:write file="temp.prop" append="true">
<xsl:value-of select="$module-info" />
</redirect:write>

this variable will produce a new line infile as:

commons-dbcp_commons-dbcp = 1.2.2
junit_junit = 4.4
org.easymock_easymock = 2.4
link|improve this answer
feedback

I second Nic Gibson's method, this was always my favorite:

<xsl:variable name='nl'><xsl:text>
</xsl:text></xsl:variable>

However I have been using the Ant task <echoxml> to create stylesheets and run them against files. The task will do attribute value templates, e.g. ${DSTAMP} , but is also will reformat your xml, so in some cases, the entity reference is preferable.

<xsl:variable name='nl'><xsl:text>&#xa;</xsl:text></xsl:variable>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.