This module displays news headlines based on an RSS feed. Scrolling through news headlines happens time-based (````updateInterval````), but can also be controlled by sending news feed specific notifications to the module.
MagicMirror's [notification mechanism](https://github.com/MichMich/MagicMirror/tree/master/modules#thissendnotificationnotification-payload) allows to send notifications to the `newsfeed` module. The following notifications are supported:
| `ARTICLE_NEXT` | Shows the next news title (hiding the summary or previously fully displayed article)
| `ARTICLE_PREVIOUS` | Shows the previous news title (hiding the summary or previously fully displayed article)
| `ARTICLE_MORE_DETAILS` | When received the _first time_, shows the corresponding description of the currently displayed news title. <br> The module expects that the module's configuration option `showDescription` is set to `false` (default value). <br><br> When received a _second consecutive time_, shows the full news article in an IFRAME. <br> This requires that the news page can be embedded in an IFRAME, e.g. doesn't have the HTTP response header [X-Frame-Options](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options) set to e.g. `DENY`.
| `ARTICLE_LESS_DETAILS` | Hides the summary or full news article and only displays the news title of the currently viewed news item.
The third party [MMM-Gestures](https://github.com/thobach/MMM-Gestures) module supports above notifications when moving your hand up, down, left or right in front of a gesture sensor attached to the MagicMirror. See module's readme for more details.
| `feeds` | An array of feed urls that will be used as source. <br> More info about this object can be found below. <br>**Default value:**`[{ title: "New York Times", url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml", encoding: "UTF-8" }]`
| `showSourceTitle` | Display the title of the source. <br><br>**Possible values:**`true` or `false`<br>**Default value:**`true`
| `showPublishDate` | Display the publish date of an headline. <br><br>**Possible values:**`true` or `false`<br>**Default value:**`true`
| `showDescription` | Display the description of an item. <br><br>**Possible values:**`true` or `false`<br>**Default value:**`false`
| `reloadInterval` | How often does the content needs to be fetched? (Milliseconds) <br><br>**Possible values:**`1000` - `86400000`<br>**Default value:**`300000` (5 minutes)
| `updateInterval` | How often do you want to display a new headline? (Milliseconds) <br><br>**Possible values:**`1000` - `60000`<br>**Default value:**`10000` (10 seconds)
| `animationSpeed` | Speed of the update animation. (Milliseconds) <br><br>**Possible values:**`0` - `5000`<br>**Default value:**`2500` (2.5 seconds)
| `maxNewsItems` | Total amount of news items to cycle through. (0 for unlimited) <br><br>**Possible values:**`0` - `...`<br>**Default value:**`0`
| `ignoreOldItems` | Ignore news items that are outdated. <br><br>**Possible values:**`true` or `false <br> **Default value:** `false`
| `ignoreOlderThan` | How old should news items be before they are considered outdated? (Milliseconds) <br><br>**Possible values:**`1` - `...`<br>**Default value:**`86400000` (1 day)
| `removeStartTags` | Some newsfeeds feature tags at the **beginning** of their titles or descriptions, such as _[VIDEO]_. This setting allows for the removal of specified tags from the beginning of an item's description and/or title. <br><br>**Possible values:**`'title'`, `'description'`, `'both'`
| `startTags` | List the tags you would like to have removed at the beginning of the feed item <br><br>**Possible values:**`['TAG']` or `['TAG1','TAG2',...]`
| `removeEndTags` | Remove specified tags from the **end** of an item's description and/or title. <br><br>**Possible values:**`'title'`, `'description'`, `'both'`
| `endTags` | List the tags you would like to have removed at the end of the feed item <br><br>**Possible values:**`['TAG']` or `['TAG1','TAG2',...]`
| `title` | The name of the feed source to be displayed above the news items. <br><br> This property is optional.
| `url` | The url of the feed used for the headlines. <br><br>**Example:**`'http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml'`
| `encoding` | The encoding of the news feed. <br><br> This property is optional. <br>**Possible values:**`'UTF-8'`, `'ISO-8859-1'`, etc ... <br>**Default value:**`'UTF-8'`