- From: Jelks Cabaniss <jelks@jelks.nu>
- Date: Mon, 4 Mar 2002 18:47:08 -0500
- To: <html-tidy@w3.org>
Matthew Stanfield wrote:
> Please ignore my earlier email, someone has just told me I
> need to define all entities in an xml document apart from:
> & ' > < " [&, ', >, <, "].
Yes. I see this is becoming a FAQ here too, so ...
--------------------------------------------------------------
Q. Why doesn't (or ©, or &Whatever;) work in XML?
A. They *will* work if and only if you've referenced a DTD that
declares them for you, such as the XHTML 1.0 Strict DTD at
http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd
or you have declared them yourself, as in ...
<?xml version="1.0"?>
<!DOCTYPE doc [
<!ENTITY nbsp " ">
<!ENTITY copy "©">
<!ENTITY alef "א">
]>
<doc>
<p>A non-breaking space is invisible,
but if you could see it, it would look
like this: .</p>
<p>The first letter of the Hebrew
alphabet is &alef;.</p>
<p>This FAQ © 2002 by XML
Anonymous</p>
</doc>
--------------------------------------------------------------
/Jelks
Received on Monday, 4 March 2002 18:47:45 UTC