if i have a url containing "&" "=" and other weird characters, how do i put this into xml?
i just want
<url>
by just having them how they appear, my parser (Sablot) complains of an "invalid token".
is there a special way to handle known types like a url or a way to stop the xml parser parsing the url segment and instead just reading it as raw data. i've seen something about "CDATA" or whatever but all that "<!ELEMENT>" crap looks like a very bad hack on top of xml as a language.
i just want
<url>
by just having them how they appear, my parser (Sablot) complains of an "invalid token".
is there a special way to handle known types like a url or a way to stop the xml parser parsing the url segment and instead just reading it as raw data. i've seen something about "CDATA" or whatever but all that "<!ELEMENT>" crap looks like a very bad hack on top of xml as a language.