Compare commits
2 Commits
62e951abac
...
0a3a56aba1
Author | SHA1 | Date |
---|---|---|
dozens | 0a3a56aba1 | |
dozens | 25aa20e81b |
|
@ -0,0 +1,36 @@
|
|||
# Pro Toad and Superb Owl
|
||||
|
||||
```
|
||||
(@)(@) {0,0} So I picked up a book in the
|
||||
(~~~~) ./)_) middle of this epic fantasy series.
|
||||
(>vv<) " " It's by this author who I heard
|
||||
does really good sword and sorcery
|
||||
\ stories, and I'm into that. Anyway
|
||||
the story opens on a tragic, lonely noble lord,
|
||||
last of his line, subject to disfigurement because
|
||||
of the family curse and whatnot. But, get this, it
|
||||
totally takes place in Old Germany during the rise
|
||||
of the Nazi party!
|
||||
```
|
||||
|
||||
|
||||
```
|
||||
|
||||
(@)(@) {0,0} -- Hoo?
|
||||
(~~~~) ./)_)
|
||||
(>vv<) " "
|
||||
|
||||
```
|
||||
|
||||
|
||||
```
|
||||
(@)(@) {0,0} I was so disoriented that I looked it up,
|
||||
(~~~~) ./)_) and there will eventually be a classic
|
||||
(>vv<) " " fantasy storyline that interweaves with
|
||||
the modern nazi storyline.
|
||||
\
|
||||
Which means eventually the hero is literally going ride
|
||||
a dragon to Hitler's bunker and punch him in the face and
|
||||
if there's one thing this world needs more of, it's mother
|
||||
fucking dragons beating the shit out of nazis.
|
||||
```
|
|
@ -0,0 +1,11 @@
|
|||
<rss version="2.0"><channel><title>It's Pro Toad and Superb Owl</title>
|
||||
<item><title>00004.md</title><link>https://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00004.md</link></item>
|
||||
<item><title>00001.md</title><link>https://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00001.md</link></item>
|
||||
<item><title>00005.md</title><link>https://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00005.md</link></item>
|
||||
<item><title>00008.md</title><link>https://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00008.md</link></item>
|
||||
<item><title>00009.md</title><link>https://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00009.md</link></item>
|
||||
<item><title>00002.md</title><link>https://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00002.md</link></item>
|
||||
<item><title>00006.md</title><link>https://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00006.md</link></item>
|
||||
<item><title>00007.md</title><link>https://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00007.md</link></item>
|
||||
<item><title>00003.md</title><link>https://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00003.md</link></item>
|
||||
</channel></rss>
|
|
@ -0,0 +1,9 @@
|
|||
#bin/sh
|
||||
echo "<rss version=\"2.0\"><channel><title>It's Pro Toad and Superb Owl</title>" > feed.xml
|
||||
|
||||
for f in $(find . -type f -iname '*.md' ! -name 'README.md' | sed 's/\.\///'); do
|
||||
echo "<item><title>$f</title><link>https://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/$f</link></item>" >> feed.xml
|
||||
done
|
||||
|
||||
echo '</channel></rss>' >> feed.xml
|
||||
|
Loading…
Reference in New Issue