|
Posted by David Dorward on 11/13/05 10:12
JD wrote:
> Where can I get a list of characters that you're not supposed to enter
> directly into HTML content? For example, <, >, ", & ? I don't really
> know how to find it in the Specification.
I'm not sure there is such a list, but its easy enough to work out - it is
any character which has special meaning in HTML.
So:
& - anywhere
< - except in attribute values
" - inside attribute values delimited with " characters
' - inside attribute values delimited with ' characters
They can, of course, be represented by their respective entities.
--
David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/>
Home is where the ~/.bashrc is
[Back to original message]
|