Help to create the right template and chunk for RSS 1.0

I don’t know. I 've tried different options . I can’t do it. I don’t pass the check W3C Feed Validation Service, for Atom and RSS
sample code RDF Site Summary (RSS) 1.0

<?xml version="1.0"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/">
<channel rdf:about="http://www.xml.com/xml/news.rss">
    <title>[[*pagetitle]]</title>
    <link>[[~[[*id]]? &scheme=`full`]]</link>
    <description>
     [[*introtext:cdata]]
    </description>
    <image rdf:resource="[[*img]]" />
    <items>
      <rdf:Seq>
        <rdf:li resource="http://xml.com/pub/2000/08/09/xslt/xslt.html" />
        <rdf:li resource="http://xml.com/pub/2000/08/09/rdfdb/index.html" />
      </rdf:Seq>
    </items>
[[getResources? &tpl=`rssItem` &parents=`3` &depth=`1` &limit=`10` &includeContent=`1` &includeTVs=`1` &showHidden=`0` &hideContainers=`1` ]]

</channel>
</rdf:RDF>
<item>
<title>[[rssfeedtext? &text=`[[+pagetitle:htmlent]]`]]</title>
<link>[[~[[+id]]? &scheme=`full`]]</link>
<image rdf:about="[[+tv.img:PhpThumbOn=`w=1170&h=500&zc=1`]]"></image>
<description>[[+content:default=`[[+introtext]]`:cdata]]</description>
</item>

What errors did you get when running the validator?

I get validation errors on the code here, but it still works. I think the problem is that the validator is looking at the code before MODX processes the tags, especially the <link> tag.

Hello. URL

Hi. I don’t know. I can’t set it up. RSS cannot be imported to the social network. The support of the social network said that the RSS 1 standard is needed, not Atom

My article is fairly old. You might want to see if you can adapt the second example here.

I am not able to adapt this getResources.Building a RSS feed - Examples | MODX Documentation Yours, too, I suppose. I wrote on the form so that they would show an example of how it should be

Did you try the one at MSN I linked to?

hi. Yes, I did. You have Atom everywhere

I don’t think you need much for a simple feed. Here’s an example I found for RSS 2.0:

<rss version="2.0">
  <channel>
    <title>My Example Updates</title>
    <link>http://example.com/</link>
    <description>Things that I've recently updated.</description>
    <item>
       <title>New Paper Published</title>
       <link>http://example.com/2002/09/01</link>
       <description>My paper was published in the Example Journal today.</description>
    </item>
    <item>
       <title>Research Project Results</title>
       <link>http://example.com/2002/09/02</link>
    </item>
  </channel>
</rss>

There’s also an article on it here.