aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2020-06-19 08:02:50 -0700
committerGitHub <noreply@github.com>2020-06-19 08:02:50 -0700
commitb24251110179b86e12d6823618777ef133738861 (patch)
treea5b3342bb25952d4cbbe094078df33af18311e51
parent638dee77047993a56953285a5a85685a0e101c79 (diff)
parentaf663d3376f6615d98be380f8a4327a6db5485eb (diff)
downloadhomer-b24251110179b86e12d6823618777ef133738861.tar.gz
homer-b24251110179b86e12d6823618777ef133738861.tar.zst
homer-b24251110179b86e12d6823618777ef133738861.zip
Merge pull request #90 from JamiePhonic/patch-1140992663
Add new trick: news as dynamic message
-rw-r--r--docs/tips-and-tricks.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/tips-and-tricks.md b/docs/tips-and-tricks.md
index 63dbde7..632b62d 100644
--- a/docs/tips-and-tricks.md
+++ b/docs/tips-and-tricks.md
@@ -110,3 +110,17 @@ docker create \
110 --restart unless-stopped \ 110 --restart unless-stopped \
111 linuxserver/code-server 111 linuxserver/code-server
112``` 112```
113
114
115## Get the news headlines in Homer
116#### `by @JamiePhonic`
117
118Homer allows you to set a "message" that will appear at the top of the page, however, you can also supply a `url:`.
119
120If the URL you specified returns a JSON object that defines a `title` and `content` item, homer will replace these values from your `config.yml` with the ones in the returned object.
121
122So, using [Node-Red](https://nodered.org/docs/getting-started/) and a quick flow, you can process an RSS feed to replace the message with a news item!
123
124To get started, simply import [this flow](https://flows.nodered.org/flow/4b6406c9a684c26ace0430dd1826e95d) into your Node-Red instance and change the RSS feed in the "Get News RSS Feed" node to one of your choosing!
125
126So far, the flow has been tested with BBC News and Sky News, however it should be easy to modify the flow to work with other RSS feeds if they dont work out of the box!