From 6624e84dcc35c23bd9557d38d1175287f430ac1b Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Fri, 12 Sep 2025 13:29:58 -0400 Subject: [PATCH 1/2] tweak --from-playground docs --- documentation/docs/20-commands/10-sv-create.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/20-commands/10-sv-create.md b/documentation/docs/20-commands/10-sv-create.md index 4318d783..bab5d939 100644 --- a/documentation/docs/20-commands/10-sv-create.md +++ b/documentation/docs/20-commands/10-sv-create.md @@ -14,7 +14,7 @@ npx sv create [options] [path] ### `--from-playground ` -Create a SvelteKit project from a Svelte Playground URL. This downloads all playground files, detects external dependencies, and sets up a complete SvelteKit project structure with everything ready to go. +Create a SvelteKit project from a [playground](/playground) URL. This downloads all playground files, detects external dependencies, and sets up a complete SvelteKit project structure with everything ready to go. Example: From d82d68b0d2d8e1f54e95044144fde8eb3f3d7bed Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Fri, 12 Sep 2025 13:34:42 -0400 Subject: [PATCH 2/2] Fix syntax in sv create command example --- documentation/docs/20-commands/10-sv-create.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/20-commands/10-sv-create.md b/documentation/docs/20-commands/10-sv-create.md index bab5d939..29f8aef1 100644 --- a/documentation/docs/20-commands/10-sv-create.md +++ b/documentation/docs/20-commands/10-sv-create.md @@ -19,7 +19,7 @@ Create a SvelteKit project from a [playground](/playground) URL. This downloads Example: ```sh -npx sv create --from-playground=https://svelte.dev/playground/hello-world +npx sv create --from-playground="https://svelte.dev/playground/hello-world" ``` ### `--template `