I want to produce a newline for text output in XSLT. Any ideas?
Thanks
|
feedback
|
|
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 | |||
|
feedback
|
|
My favoured method for doing this looks something like:
Then, whenever you want to output a newline (perhaps in csv) you can output something like:
I've used this technique when outputting sql from xml input. In fact, I tend to create variables for commas, quotes and newlines. | ||||
|
feedback
|
|
You can use:
I used this type of writing code to insert and use xslt in sql server tables, and works ... . | |||
|
feedback
|
|
You can use: see the example
if you write this in file e.g.
this variable will produce a new line infile as:
| |||
|
feedback
|
|
I second Nic Gibson's method, this was always my favorite:
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.
| |||
|
feedback
|