Feedback fixes

This commit is contained in:
Yann Esposito (Yogsototh) 2019-10-02 09:07:55 +02:00
parent a0d35dfe4c
commit 3a7bff1537
No known key found for this signature in database
GPG Key ID: 7B19A4C650D59646
2 changed files with 14 additions and 1 deletions

View File

@ -1,5 +1,12 @@
# Changelog
## 1.7
* Add support for Feed Categories
* RSS: http://www.rssboard.org/rss-specification#ltcategorygtSubelementOfLtitemgt
* Atom: https://tools.ietf.org/html/rfc4287#section-4.2.2
* Create the `EntryCategory` datatype
## 1.6.1
* Upgrade to yesod-core 1.6.0

View File

@ -42,7 +42,9 @@ data EntryEnclosure url = EntryEnclosure
}
-- | RSS 2.0 and Atom allow category in a feed entry.
-- See http://www.rssboard.org/rss-specification#ltcategorygtSubelementOfLtitemgt
--
-- * [RSS category](http://www.rssboard.org/rss-specification#ltcategorygtSubelementOfLtitemgt)
-- * [Atom category](https://tools.ietf.org/html/rfc4287#section-4.2.2)
--
-- RSS feeds ignore 'categoryLabel'
--
@ -65,4 +67,8 @@ data FeedEntry url = FeedEntry
--
-- @since 1.5
, feedEntryCategories :: [EntryCategory]
-- ^ Allows categories data: RSS \<category>
-- or Atom \<link term=category>
--
-- @since 1.7
}