Skip to content

Commit

Permalink
Merge pull request #45 from Bastian-Krause/bst/feed-summary-html
Browse files Browse the repository at this point in the history
update feedgen dependency, define Atom feed summary type as HTML
  • Loading branch information
SmithChart authored Oct 24, 2023
2 parents e434953 + ef45091 commit 8a15c31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flamingo/plugins/feeds.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def pre_build(self, context):
summary = str(i['summary'])
if 'html_filter' in feed_config:
summary = feed_config['html_filter'](summary)
fe.summary(summary)
fe.summary(summary, type='html')

if feed_config['type'] == 'podcast':
fe.enclosure(fe_podcast_url, str(fe_podcast_size), fe_podcast_type)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
'markdown',
],
'feeds': [
'feedgen==0.7.0',
'feedgen==0.9.0',
],
'thumbnails': [
'pillow',
Expand Down

0 comments on commit 8a15c31

Please sign in to comment.