[Home] [By Thread] [By Date] [Recent Entries]
>I have written an XSL which converts an XML document to HTML. >The problem I am facing is, I am trying to send " "(HTML blank space) >and "<" to my HTML doc, but the parser intreprets this and sends >the blank space as "&nbsp;" and the "<" sign as "<" Use < for < and for the HTML blank. You don't need to declare <, because it's one of the five character entities that all XML processors are already supposed to understand, but you do need to declare nbsp, so begin your XSL stylesheet like this: <?xml version="1.0"?> <!DOCTYPE stylesheet [ <!ENTITY nbsp " "> ]> Bob DuCharme www.snee.com/bob <bob@ snee.com> see www.snee.com/bob/xmlann for "XML: The Annotated Specification" from Prentice Hall. xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@i... Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ or CD-ROM/ISBN 981-02-3594-1 Unsubscribe by posting to majordom@i... the message unsubscribe xml-dev (or) unsubscribe xml-dev your-subscribed-email@your-subscribed-address Please note: New list subscriptions now closed in preparation for transfer to OASIS.
|

Cart



