From 09b5afc8fe53f5e2938ff0de147c99fd93056044 Mon Sep 17 00:00:00 2001 From: Jan Date: Sat, 16 Apr 2022 03:39:01 +0200 Subject: [PATCH] [docs] Remove draft status of setting-up-your-editor blog-entry to fix broken link (#7310) * site: add missing word * comment out link to setting up your editor blog post Co-authored-by: tanhauhau --- site/content/blog/2019-04-15-setting-up-your-editor.md | 2 +- .../tutorial/01-introduction/07-making-an-app/text.md | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/site/content/blog/2019-04-15-setting-up-your-editor.md b/site/content/blog/2019-04-15-setting-up-your-editor.md index fb8287d0cb..65d0234645 100644 --- a/site/content/blog/2019-04-15-setting-up-your-editor.md +++ b/site/content/blog/2019-04-15-setting-up-your-editor.md @@ -8,7 +8,7 @@ draft: true *__Coming soon__* -This post will walk you through setting up your editor so that recognises Svelte files: +This post will walk you through setting up your editor so that it recognises Svelte files: * eslint-plugin-svelte3 * svelte-vscode diff --git a/site/content/tutorial/01-introduction/07-making-an-app/text.md b/site/content/tutorial/01-introduction/07-making-an-app/text.md index 3e1589cd87..132865a364 100644 --- a/site/content/tutorial/01-introduction/07-making-an-app/text.md +++ b/site/content/tutorial/01-introduction/07-making-an-app/text.md @@ -14,7 +14,11 @@ First, you'll need to integrate Svelte with a build tool. There are officially m Don't worry if you're relatively new to web development and haven't used these tools before. We've prepared a simple step-by-step guide, [Svelte for new developers](/blog/svelte-for-new-developers), which walks you through the process. -You'll also want to configure your text editor. There are [plugins](https://sveltesociety.dev/tools#editor-support) for many popular editors as well as an official [VS Code extension](https://marketplace.visualstudio.com/items?itemName=svelte.svelte-vscode). If your editor does not have a Svelte plugin then you can follow [this guide](/blog/setting-up-your-editor) to configure your text editor to treat `.svelte` files the same as `.html` for the sake of syntax highlighting. +You'll also want to configure your text editor. There are [plugins](https://sveltesociety.dev/tools#editor-support) for many popular editors as well as an official [VS Code extension](https://marketplace.visualstudio.com/items?itemName=svelte.svelte-vscode). + + Then, once you've got your project set up, using Svelte components is easy. The compiler turns each component into a regular JavaScript class — just import it and instantiate with `new`: