Page 1 of 1

SubItems Allowed ?

Posted: Mon Mar 21, 2005 10:43 am
by anjanesh
Hi
Im trying to make a RSS feed. But it needs sub items - is that allowed ?

Code: Select all

<item>
<title></title>

 <item>
 <title></title>
 <description></description>
 </item>

 <item>
 <title></title>
 <description></description>
 </item>

 <item>
 <title></title>
 <description></description>
 </item>

<description></description>
</item>
Will RSS Reader interpret this ?
Thanks

Posted: Mon Mar 21, 2005 10:54 am
by feyd
the DTD would appear to say no.

Posted: Mon Mar 21, 2005 11:03 am
by anjanesh
Im looking at ver 0.91 specs (http://my.netscape.com/publish/formats/ ... .html#item) and it seems its not allowed.
Where can I see v2.0 ? Im not able to find this in netscape.

Posted: Mon Mar 21, 2005 11:04 am
by feyd

Posted: Mon Mar 21, 2005 11:08 am
by anjanesh
Thanks.
BTW, is it not possible to have subitems using some : operator ?
Like RDF or something ? Not sure but whats this : thats used often ?

Posted: Mon Mar 21, 2005 11:09 am
by feyd
namespace hooks.

Posted: Mon Mar 21, 2005 11:35 am
by anjanesh
HTML tags in <description> not being parsed in RSS Readers ?
I tried

Code: Select all

<description>
<b>Sentence 1</b><br/>
Sentence 2<br/>
Sentence 3<br/>
</description>
FeedReader is showing in one single line and Sentence 1 is not bold.
Any other alternative ?