|
DanteX Apprentice
Joined: 13 Aug 2007 Posts: 166
|
Posted: Thu Aug 30, 2007 2:40 pm
[2.01] XML exports of <> |
I'm not sure if this
Code: |
<trigger priority="27320" id="2732">
<pattern>^~</pattern>
</trigger> |
is a correct XML export of this trigger pattern
but it looks wierd.
D |
|
|
|
Vijilante SubAdmin
Joined: 18 Nov 2001 Posts: 5182
|
Posted: Thu Aug 30, 2007 4:06 pm |
From what I could tell of the original post it is being exported correctly at &lt and &gt the forum is just eating it within the code tags.
|
|
_________________ The only good questions are the ones we have never answered before.
Search the Forums |
|
|
|
Zugg MASTER
Joined: 25 Sep 2000 Posts: 23379 Location: Colorado, USA
|
Posted: Thu Aug 30, 2007 5:55 pm |
Yes, CMUD is exporting it correctly. The < and > get changed into < and > entities, which is how XML works. You cannot have embedded < > characters in XML unless you use a CDATA section, which would make your script look even stranger to you probably. The & character in your script will also get converted to &
Just stuff you need to get used to seeing when working with XML.
(and yes, the forum code tag ate his entities) |
|
|
|
|
|