I want to produce a newline for text output in XSLT. Any ideas?
Thanks
|
|
|
|
|
|
|
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 |
||
|
|
|
|
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. |
||
|
|