You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,6 +78,16 @@ For sorting on updated date instead of publication date
78
78
.sorted(ItemComparator.oldestUpdatedItemFirst())
79
79
```
80
80
81
+
### Feed Filters
82
+
Feed filters allow you to clean or transform RSS feed data before it is parsed. This is useful for handling malformed content, removing invalid characters, or applying custom preprocessing logic.
83
+
Filters are applied to the raw `InputStream` of the feed, allowing for flexible transformations before parsing begins. Each filter must implement the `FeedFilter` interface.
84
+
For example, to remove invalid XML characters from a feed before parsing:
0 commit comments