Skip to content

Commit ed184bf

Browse files
committed
fix: remove author and link from body
1 parent 4ed293e commit ed184bf

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/feed_generator.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ def create_feed(atom_feed: fastfeedparser.FastFeedParserDict):
3535
feed_item.author({"name": entry["author"]})
3636
feed_item.pubDate(entry["updated"])
3737
feed_item.content(
38-
f"<p><strong>Author:</strong> {entry['author']}</p>"
39-
f"<p><strong>Link:</strong> <a href=\"{entry['link']}\">{entry['link']}</a></p>"
4038
f"<pre><code>{get_entry_diff(entry)}</code></pre>",
4139
type="html"
4240
)

0 commit comments

Comments
 (0)