Is it legal in XML to mix text and tags? -


is following acceptable xml structure?

<root>     <child id="1" name="test">some inner text         <secondchild id="1" name="test1">some text</secondchild>         <secondchild id="2" name="test2">some text 2</secondchild>     </child> </root> 

i want insert innertext() child nodes <child/> node. legal within xml?

normally, don't have insert raw text in addition of childs elements in tag ...

what trying please ?

anyway can verify here : http://www.w3schools.com/xml/xml_validator.asp

there apparently no errors in document far.


Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -