diff options
Diffstat (limited to 'fern.go')
| -rw-r--r-- | fern.go | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1,5 +1,5 @@ // SPDX-License-Identifier: ISC -// Copyright © 2022 siddharth <s@ricketyspace.net> +// Copyright © 2026 siddharth <s@ricketyspace.net> // fern is a simple media feed downloader. // @@ -27,9 +27,10 @@ // "id": "media-feed-id", // unique identifier for the media feed // "source": "https://feeds.npr.org/XXXX/rss.xml", // media feed url // "schema": "npr", // must be "youtube" or "npr" or "podcast" -// "last": 5 // the last N items that should be downloaded -// "title-contains": "tiny desk" // optional. if specified, downloads entries with title matching the value of this field -// "ignore-shorts": true // optional. applicable to only youtube feeds. if set, will ignore youtube shorts. +// "last": 5, // the last N items that should be downloaded +// "title-contains": "tiny desk", // optional. if specified, downloads entries with title matching the value of this field +// "ignore-shorts": true, // optional. applicable to only youtube feeds. if set, will ignore youtube shorts. +// "ignore-titles": ["#ad"] // optional. applicable to only youtube feeds. if set, will ignore entries with title containing any of the values (case-insensitive) in this list. // } // // You may download an example config file for fern from |
