Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
81146 views
1
exports.name = "Atom (1.0)";
2
exports.file = "/Atom_Example.xml";
3
exports.expected = {
4
type: "atom",
5
id: "urn:uuid:60a76c80-d399-11d9-b91C-0003939e0af6",
6
title: "Example Feed",
7
link: "http://example.org/feed/",
8
description: "A subtitle.",
9
updated: new Date("2003-12-13T18:30:02Z"),
10
author: "[email protected]",
11
items: [{
12
id: "urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a",
13
title: "Atom-Powered Robots Run Amok",
14
link: "http://example.org/2003/12/13/atom03",
15
description: "Some content.",
16
pubDate: new Date("2003-12-13T18:30:02Z")
17
}]
18
};
19
20