From c57e18d2f3f20df62a2c8a7c5361f068074e2a47 Mon Sep 17 00:00:00 2001 From: Nate Moore Date: Mon, 7 Jun 2021 12:53:56 -0500 Subject: [PATCH] docs: add link to renderer docs (#312) * docs: add link to renderer docs * doc: update renderer link * doc: update renderer link --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index eb9b41a7ce..05a1e05714 100644 --- a/README.md +++ b/README.md @@ -188,6 +188,12 @@ Astro uses __[Snowpack](https://www.snowpack.dev/)__ for module resolution. You 👉 [**`snowpack.config.mjs` Reference**][docs-snowpack-config] +## 🪄 Renderers + +Astro is able to render [React](https://npm.im/@astrojs/renderer-react), [Svelte](https://npm.im/@astrojs/renderer-svelte), [Vue](https://npm.im/@astrojs/renderer-vue), and [Preact](https://npm.im/@astrojs/renderer-preact) components out of the box. If you'd like to add support for another framework, you can build a **renderer** plugin using the same interface as Astro's official renderers. + +👉 [**Renderer Docs**][docs-renderer] + ## 📚 API 👉 [**Full API Reference**][docs-api] @@ -204,6 +210,7 @@ Astro uses __[Snowpack](https://www.snowpack.dev/)__ for module resolution. You [docs-snowpack-config]: https://www.snowpack.dev/reference/configuration [docs-syntax]: ./docs/syntax.md [docs-api]: ./docs/api.md +[docs-renderer]: ./docs/renderers.md [docs-collections]: ./docs/collections.md [docs-markdown]: ./docs/markdown.md [docs-dev]: ./docs/dev.md