Anatomy of a JL-RSS FeedA JL-RSS feed is composed of the following elements:
Declaring the RSS and Channel ContainersRSS ContainerYour JL-RSS file should start like this: <?xml version="1.0" encoding="UTF-8" ?> And end like this: </rss> NB: As a standard we use UTF-8 encoding for JL-RSS so we can handle all languages. Channel ContainerAfter the first part of the RSS Container, you declare your channel like this: <channel> And before the second part of the RSS Container, you close the Channel container like this: </channel> Truncated example: <?xml version="1.0 " encoding="UTF-8" ?> Click here for some examples |
The Specification >