vote up 4 vote down star
3

I realise that it's not elegant or desired, but is it valid for an attribute value in an XML element to span multiple lines?

e.g.

<some-xml-element value="this value goes over....
multiple lines!" />

Yeah I realise there's better ways of writing that. I would personally write it like:

<some-xml-element>
<value>this value goes over...
multiple lines!</value>
</some-xml-element>

or:

<some-xml-element value="this value goes over....&#13;&#10;" />

But we have our own XML parser and I'd like to know whether the first example is valid for XML.

flag

60% accept rate

2 Answers

vote up 8 vote down check

http://www.w3.org/TR/REC-xml/#NT-AttValue

Seems to say everything except < & and " are OK. So newline should be, too.

link|flag
+1 for the research. – Ben Daniel Jan 16 at 6:34
vote up 2 vote down

Yes the first example is a valid one.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.