Re: Re: USF: PixiShow, Ruby Tested, a ChronoSub bug

liisa <[email protected]> Wed, 29 Jun 2005 09:07:10 +0900
Newsgroups gmane.comp.multimedia.matroska.devel,gmane.comp.multimedia.usf.devel
Message-ID <20050629090710k7d?&'@faireal.net>
> At least you MUST escape &, <, and > as &amp;, &lt;, and &gt;
> and single-quote character (') MAY be represented as "&apos;"
> http://www.w3.org/TR/REC-xml/#syntax

I mean, if you want to put the charcter ' in '' 
then the character ' have to be escaped as &apos;

if you want to put the character " in ""
then the character " have to be escaped as &quot;

<foo bar="It's OK">
<foo bar='It's not OK'>
<foo bar='It&apos;s OK too'>

<foo bar="Quotation "like this" is not OK">
<foo bar="Quotation &quot;like this&quot; is OK">
<foo bar='Quotation "like this" is OK too'>