i want to make a xml attribute without any value, which simply has one meaning when its exists or not exists.
Is that valide?
|
feedback
|
|
No. Boolean attributes in XML are of the form Even in SGML, you must provide the value, (it is the name, | ||||
|
feedback
|
|
Yes. You can have an attribute whose only permitted value is the empty string, "". I't not sure it's good design, though: I would normally suggest a boolean attribute with values true/false, and a default value of false. | |||||
feedback
|
|
An attribute must be specified with the following syntax:
where Name is a legal XML name, Eq is = optionally preceded or followed by whitespace, and AttValue is a legal attribute value. This definition is true for both XML 1.0 and XML 1.1. If you are trying to specify an attribute as below:
then no, that is not valid. If you are trying to specify it this way:
then yes, that is valid. | |||
|
feedback
|