[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: weird formatting and characters with <xsl:text di
> Also Michael mentioned using output-method="text" and "disable-output > escaping" this is what I tried to do in my original attempt, but came > up with badly formatted output. since you are using xsl:output="text" you can remove all the d-o-e attributes as they have no effect on text output. escaping is only done in xml and html output so it's only there it can be disabled. That will make your stylesheet easier to read but not have any effect on the output. for similar reasns the omit-xml-declaration attribute is doing nothing here <xsl:output method="text" name="text" omit-xml-declaration="yes" encoding="us-ascii"/> the encoding attribute though will have an effect: if the system honours this attribute and outputs in ascii then if there are any non-ascii characters in the output tree you will get a fatal error. XML style &# character escapes are not available in text output mode. You have <xsl:sort select="sequence"/> but your sample input didn't have a sequence element, not sure if that's an error or just that your sample was small. David ________________________________________________________________________ This e-mail has been scanned for all viruses by Star. The service is powered by MessageLabs. For more information on a proactive anti-virus service working around the clock, around the globe, visit: http://www.star.net.uk ________________________________________________________________________
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|