Reputation: 34018
I can't believe I can't find this information easily accessible, so:
1) Which characters cannot be incorporated in an XML attribute without entity-encoding them?
Obviously, you need to encode quotes. What about <
and >
? What else?
2) Where exactly is the official list?
Upvotes: 57
Views: 47732
Reputation: 11729
Here is the definition of what is allowed in an attribute value.
'"' ([^<&"] | Reference)* '"' | "'" ([^<&'] | Reference)* "'"
So, you can't have:
'
or "
)&
must be &
)<
must be <
)You should also not being using any characters that are outright not legal anywhere in an XML document (such as form feeds, etc).
Upvotes: 62
Reputation: 2115
As per the (2) current recommendation, specifically regarding character data and Markup, they are (1) the ampersand (&), left angle bracket (<), right angle bracket (>) and both single-quote (') and double-quote (").
Upvotes: 6
Reputation: 161783
See 2.2 Characters in "Extensible Markup Language (XML) 1.0 (Third Edition)".
Note that, at least with .NET, if you are using the XML APIs to work with XML, then you won't have to worry about this. It's the reason not to treat XML as being text.
Upvotes: 1