From 88500941be249aa4d9ea935749a980ef17e024b8 Mon Sep 17 00:00:00 2001 From: Dillon Kearns Date: Fri, 18 Nov 2022 10:38:10 -0800 Subject: [PATCH] Update some links. --- src/ApiRoute.elm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ApiRoute.elm b/src/ApiRoute.elm index a5f9f195..ec21d48e 100644 --- a/src/ApiRoute.elm +++ b/src/ApiRoute.elm @@ -20,8 +20,8 @@ use cases they support. A pre-rendered ApiRoute is just a generated file. For example: - - [An RSS feed](https://github.com/dillonkearns/elm-pages/blob/131f7b750cdefb2ba7a34a06be06dfbfafc79a86/examples/docs/app/Api.elm#L77-L84) - - [A calendar feed in the ical format](https://github.com/dillonkearns/incrementalelm.com/blob/d4934d899d06232dc66dcf9f4b5eccc74bbc60d3/src/Api.elm#L51-L60) + - [An RSS feed](https://github.com/dillonkearns/elm-pages/blob/131f7b750cdefb2ba7a34a06be06dfbfafc79a86/examples/docs/app/Api.elm#L77-L84) ([Output file](https://elm-pages.com/blog/feed.xml)) + - [A calendar feed in the ical format](https://github.com/dillonkearns/incrementalelm.com/blob/d4934d899d06232dc66dcf9f4b5eccc74bbc60d3/src/Api.elm#L51-L60) ([Output file](https://incrementalelm.com/live.ics)) - A redirect file for a hosting provider like Netlify You could even generate a JavaScript file, an Elm file, or any file with a String body! It's really just a way to generate files, which are typically used to serve files to a user or Browser, but you execute them, copy them, etc. The only limit is your imagination!