Output-Document all in one Line
Replies (1)
Please register to reply
Added by Anonymous about 20 years ago
Legacy ID: #2793559 Legacy Poster: Martin Beck (ma_beck)
I have the Problem, hat I want my XSLT-output-document without Line-Breaks. The complete output-document should have only 1 Line. How can I do this with Saxon. <xsl:output indent="no"> don't work. Another question: Can I use another Indent-Character than   I want to use 	 for Indent. How can I do this with saxon? Thanks.
Legacy ID: #2793695 Legacy Poster: Michael Kay (mhkay)
If you sent indent="no", then the only line breaks that appear in the output will be those that your stylesheet has written to the output. It is often useful to set <xsl:strip-space="*"/> to stop unwanted whitespace being copied from the source document. Saxon does not provide any option to indent using tabs. Michael Kay
Please register to reply