From 9d26c6e04ee4a20294b1c66a3911d453f54cc0fe Mon Sep 17 00:00:00 2001 From: Bert B <44912991+bertybot@users.noreply.github.com> Date: Wed, 3 Nov 2021 09:30:13 -0400 Subject: [PATCH] Update compile.md preprocessor link. Original preprocessor link is dead github repo that points to https://sveltesociety.dev/. I thought the link should just take you there now and to the relevant section. --- site/content/docs/04-compile-time.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/docs/04-compile-time.md b/site/content/docs/04-compile-time.md index 843daf2f84..ec10705b24 100644 --- a/site/content/docs/04-compile-time.md +++ b/site/content/docs/04-compile-time.md @@ -190,7 +190,7 @@ const ast = svelte.parse(source, { filename: 'App.svelte' }); ### `svelte.preprocess` -A number of [community-maintained preprocessing plugins](https://github.com/sveltejs/integrations#preprocessors) are available to allow you to use Svelte with tools like TypeScript, PostCSS, SCSS, and Less. +A number of [community-maintained preprocessing plugins](https://sveltesociety.dev/tools#preprocessors) are available to allow you to use Svelte with tools like TypeScript, PostCSS, SCSS, and Less. You can write your own preprocessor using the `svelte.preprocess` API.