1
0
mirror of https://codeberg.org/teddit/teddit synced 2025-02-16 20:20:36 +01:00

add [link] & [comments] to the rss desc

This commit is contained in:
teddit 2020-12-29 16:44:24 +01:00
parent e57b3adf91
commit 6001d0037f

View File

@ -51,6 +51,8 @@ module.exports = function() {
if(is_self_link)
link.url = link.permalink
let append_desc_html = `<br/><a href="${link.url}">[link]</a> <a href="${link.permalink}">[comments]</a>`
items += `
<item>
<title>${link.title}</title>
@ -61,7 +63,7 @@ module.exports = function() {
<thumbnail>${thumbnail}</thumbnail>
<link>${link.permalink}</link>
<url>${link.url}</url>
<description><![CDATA[${unescape(link.selftext_html)}]]></description>
<description><![CDATA[${unescape(link.selftext_html)}${append_desc_html}]]></description>
<num_comments>${link.num_comments}</num_comments>
<ups>${link.ups}</ups>
<stickied>${link.stickied}</stickied>