Skip to content

Instantly share code, notes, and snippets.

@kimarx
Created February 17, 2012 13:40
Show Gist options
  • Save kimarx/1853497 to your computer and use it in GitHub Desktop.
Save kimarx/1853497 to your computer and use it in GitHub Desktop.
4chan clone rss.tx
<?xml version="1.0"?>
<rss version="2.0">
<channel>
<title><: $title :></title>
<link><: $link :></link>
: for $entries -> $i {
<item>
<title>No. <: $i.id :> <: $i.name :> <: $i.message :></title>
<link><: $i.uri :></link>
<description>No. <: $i.id :> <: $i.name :> <: $i.message :></description>
<pubDate><: $i.date :></pubDate>
<enclosure url="<: $i.img_path :>"
length="<: $i.img_size :>"
type ="<: $i.type :>"/>
</item>
: }
</channel>
</rss>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment