Are you using the » symbol directly or are you defining it as » ? If you're using the escaped symbol, did you forget the semicolon?
did you specify a doc type for your file ?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
I think you might get such errors if you forget to specify it.
Also sometimes the entities work if you specify them by number instead of name.
» « instead of » and «
You are trying to use an HTML entity in a non-HTML or non-XHTML document. These entities are declared in the document's Document Type Definition (DTD).
You should use the numerical Unicode version of the entity reference. For example, in the case of »
you should use »
Alternatively, you can define them in your XML document's DTD:
<!ENTITY entity-name "entity-value">
<!ENTITY raquo "»">
Otherwise, if your document is UTF-8, I believe you can just use the actual character directly in your XML document.
»
This is an issue because not all HTML entities are XML entity. You can import the DTD of HTML into your document as Pat suggested, or do one of the following:
Replace all the occurances of the special character with the numeric entity code:
» becomes »
Wrap all occurances of the special characters in a CDATA Tag
<![CDATA[»]]>
Define entitys at the top of your document
<!DOCTYPE ROOT_XML_ELEMENT [ <!ENTITY raquo "»"> ]>
Joe
When I use the unicode version shows a square.
Putting the entity decalration into the xml doc produces a "Cannot have a DTD declaration outside of a DTD." error. I suppose this is expected.
When I use '' to include the dtd externally it doesn't seem to have any effect.
I am wondering if this is maybe a server issue. I am developing this locally and using Baby Web Server.
simply replace your HTML entity »
with the numeric reference »
which is good in any XML and HTML.
I found myself googling for such info a lot, so decided to post a matrix on my own site for the simple purpose of quickly being able to do a lookup:
http://martinkool.com/characters
Use the &#...; form indeed.
If you want the output document to contain the named HTML entity »
rather than the numeric reference, add the following elements to your stylesheet (XSLT2.0 only):
<xsl:output use-character-maps="raquo.ent"/>
<xsl:character-map name="raquo.ent">
<xsl:output-character character="»" string="&raquo;"/>
</xsl:character-map>