From e8bfa672e4032fc89c4526d7d09be5b69648061a Mon Sep 17 00:00:00 2001 From: Owen Buckley Date: Fri, 24 Jan 2025 18:40:01 -0500 Subject: [PATCH] grammar --- src/pages/docs/reference/plugins-api.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/docs/reference/plugins-api.md b/src/pages/docs/reference/plugins-api.md index 1c354b2f..baa8124d 100644 --- a/src/pages/docs/reference/plugins-api.md +++ b/src/pages/docs/reference/plugins-api.md @@ -331,7 +331,7 @@ If you need to copy files out of _node_modules_, you can use some of Greenwood's ## Renderer -Renderer plugins allow users to customize how Greenwood server renders (and prerenders) your project. By default, Greenwood supports using [**WCC** or (template) strings](/docs/pages/server-rendering/) to return static HTML for the content and template of your server side routes. For example, you can use [Lit's SSR capabilities](https://github.com/lit/lit/tree/main/packages/labs/ssr) to render your Lit Web Components on the server side instead. (but don't do that one specifically, we already have [a plugin](/docs/plugins/lit-ssr/) for Lit 😊) +Renderer plugins are the way to customize how Greenwood server renders (and prerenders) your project. By default, Greenwood supports using [**WCC** or (template) strings](/docs/pages/server-rendering/) to return static HTML for the content and layouts of your server side routes. For example, you can use [Lit's SSR capabilities](https://github.com/lit/lit/tree/main/packages/labs/ssr) to render your Lit Web Components on the server side instead. (but don't do that one specifically, we already have [a plugin](/docs/plugins/lit-ssr/) for Lit 😊) > Note: Only **one** renderer plugin can be used at a time. @@ -370,7 +370,7 @@ This plugin expects to be given a path to a module that exports a function to ex This plugin type supports the following options: - **executeModuleUrl** (recommended) - `URL` to the location of a file with the SSR rendering implementation -- **customUrl** - `URL` to a file that has a `default export` of a function for handling the _prerendering_ lifecyle of a Greenwood build, and running the provided callback function +- **customUrl** - `URL` to a file that has a `default export` of a function for handling the _prerendering_ lifecycle of a Greenwood build, and running the provided callback function ### Examples