show/hide this revision's text 4 reversed options to put more emphasis on better option

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 either define them in your XML document's DTD:

<!ENTITY entity-name "entity-value">
<!ENTITY raquo "&#187;">

Or

Otherwise, if your document is UTF-8, I believe you can just use the numerical Unicode version of the entity reference. For example, actual character directly in the case of &raquo; you should use &#187;your XML document.

ยป
show/hide this revision's text 3 added link

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 can either define them in your XML document's DTD:

<!ENTITY entity-name "entity-value">
<!ENTITY raquo "&#187;">

Or you can use the numerical Unicode version of the entity reference. For example, in the case of &raquo; you should use &#187;

show/hide this revision's text 2 examples

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 can either declare define them in your XML document's DTDor :

<!ENTITY entity-name "entity-value">
<!ENTITY raquo "&#187;">

Or you can use the numerical Unicode version of the entity reference. For example, in the case of &raquo; you should use &#187;

show/hide this revision's text 1