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 &, <, and >
> and single-quote character (') MAY be represented as "'"
> 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 '
if you want to put the character " in ""
then the character " have to be escaped as "
<foo bar="It's OK">
<foo bar='It's not OK'>
<foo bar='It's OK too'>
<foo bar="Quotation "like this" is not OK">
<foo bar="Quotation "like this" is OK">
<foo bar='Quotation "like this" is OK too'>