forked from dozens/protoadandsuperbowl
22 lines
838 B
Bash
Executable File
22 lines
838 B
Bash
Executable File
#!/bin/sh
|
|
echo "<rss version=\"2.0\"><channel><title>It's Pro Toad and Superb Owl</title>" > feed.xml
|
|
echo "<link>https://git.tilde.town/dozens/protoadandsuperbowl</link><description>It's Pro Toad and Superb Owl!</description><atom:link rel=\"self\" type=\"application/rss+xml\" href=\"https://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/feed.xml\"/><generator>/bin/sh</generator>" >> feed.xml
|
|
|
|
|
|
for f in *.md; do
|
|
if [ $f == "README.md" ]; then
|
|
continue
|
|
fi
|
|
echo "<item>
|
|
<title>$f</title>
|
|
<link>https://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/$f</link>
|
|
<pubDate>$(git log --follow --format=%ad --date default $f | tail -1)</pubDate>
|
|
<description><![CDATA[" >> feed.xml
|
|
pandoc $f >> feed.xml
|
|
echo "]]></description>
|
|
</item>" >> feed.xml
|
|
done
|
|
|
|
echo '</channel></rss>' >> feed.xml
|
|
|