[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
Re: [xsl] how to put html element like & or • and make it to render as it should
Subject: Re: [xsl] how to put html element like & or • and make it to render as it should
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 30 Oct 2006 16:26:49 GMT
|
> how do I put html element like & or • and make it render as it
> should?
they are not elements but entity references.
& you can enter as & and • is defined in html to be
character 8226 so you can use & # 8 2 2 6 ;
(without the spaces)
David
|