Reputation: 22133
For example, is this valid XML?:
<foo bar="3<5" />
Or do I have to escape them?:
<foo bar="3<5" />
Upvotes: 1
Views: 1225
Reputation: 917
You have to escape the literal <.
You can check this using any XML Validator.
Upvotes: 1