rss: Clarify that RSS content is the abstract

I'm still debating whether to include the full text of the post within the
RSS feed, since some of them may be substantial (like the one I'll be
posting soon that I've been sitting on for a couple weeks because I'm too
busy/lazy to do final editing).

* src/rss.sh: Add "(Read full post)" link.
master
Mike Gerwitz 2019-02-16 01:28:51 -05:00
parent 808570f3a6
commit 92afc7f1c0
Signed by: mikegerwitz
GPG Key ID: 8C917B7F5DC51BA2
1 changed files with 4 additions and 1 deletions

View File

@ -70,7 +70,10 @@ gen-item()
<author><![CDATA[$author]]></author>
<link>$www/$slug</link>
<pubDate>$date</pubDate>
<description><![CDATA[$abstract]]></description>
<description><![CDATA[
$abstract
<p><a href="$www/$slug">(Read full post)</a></p>
]]></description>
</item>
EOF
}