summaryrefslogtreecommitdiff
path: root/examples/docs
diff options
context:
space:
mode:
authorGravatar Caleb Jasik <calebjasik@jasik.xyz> 2021-07-16 06:01:31 -0500
committerGravatar GitHub <noreply@github.com> 2021-07-16 07:01:31 -0400
commit6d06fce6d2f47ee793b98b970212b27e8dc059f2 (patch)
treee8424c9266de0886e8fb3c133da7f87e2eeacb11 /examples/docs
parentf64ff85b267b732dc2598bb9c80418622e435cfb (diff)
downloadastro-6d06fce6d2f47ee793b98b970212b27e8dc059f2.tar.gz
astro-6d06fce6d2f47ee793b98b970212b27e8dc059f2.tar.zst
astro-6d06fce6d2f47ee793b98b970212b27e8dc059f2.zip
Update docs in compiler messages (#710)
* `github.com/snowpackjs/astro/blob/main/docs/*.md` -> `docs.astro.build/*/` * convert links to docs site links * Fix broken links that didn't work w/ the regex. * Add changeset * Delete five-weeks-destroy.md Co-authored-by: Fred K. Schott <fkschott@gmail.com>
Diffstat (limited to 'examples/docs')
-rw-r--r--examples/docs/src/layouts/Main.astro2
-rw-r--r--examples/docs/src/pages/getting-started.md22
2 files changed, 12 insertions, 12 deletions
diff --git a/examples/docs/src/layouts/Main.astro b/examples/docs/src/layouts/Main.astro
index fe847496e..ffc94e374 100644
--- a/examples/docs/src/layouts/Main.astro
+++ b/examples/docs/src/layouts/Main.astro
@@ -16,7 +16,7 @@ const currentFile = currentPage === '/' ? 'src/pages/index.md' : `src/pages${cur
const githubEditUrl = `https://github.com/USER/REPO/blob/main/${currentFile}`
// Full Astro Component Syntax:
-// https://github.com/snowpackjs/astro/blob/main/docs/core-concepts/astro-components.md
+// https://docs.astro.build/core-concepts/astro-components/
---
<html lang={ content.lang ?? 'en' }>
<head>
diff --git a/examples/docs/src/pages/getting-started.md b/examples/docs/src/pages/getting-started.md
index eb2826dbc..ab9c79617 100644
--- a/examples/docs/src/pages/getting-started.md
+++ b/examples/docs/src/pages/getting-started.md
@@ -46,14 +46,14 @@ The `src/components/ThemeToggle.tsx` is only responsible for applying the theme,
For more information on how to use Astro components, check the documentation pages:
-- [General Instructions](https://github.com/snowpackjs/astro#readme)
-- [astro.config.mjs](https://github.com/snowpackjs/astro/blob/main/docs/config.md)
-- [API](https://github.com/snowpackjs/astro/blob/main/docs/api.md)
-- [Command Line Interface](https://github.com/snowpackjs/astro/blob/main/docs/cli.md)
-- [Collections](https://github.com/snowpackjs/astro/blob/main/docs/collections.md)
-- [Development Server](https://github.com/snowpackjs/astro/blob/main/docs/dev.md)
-- [Markdown](https://github.com/snowpackjs/astro/blob/main/docs/markdown.md)
-- [Publishing Astro components](https://github.com/snowpackjs/astro/blob/main/docs/publishing.md)
-- [Renderers](https://github.com/snowpackjs/astro/blob/main/docs/renderers.md)
-- [Styling](https://github.com/snowpackjs/astro/blob/main/docs/styling.md)
-- [.astro Syntax](https://github.com/snowpackjs/astro/blob/main/docs/syntax.md)
+- [Quick Start](https://docs.astro.build/quick-start)
+- [astro.config.mjs](https://docs.astro.build/reference/configuration-reference)
+- [API](https://docs.astro.build/reference/api-reference)
+- [Command Line Interface](https://docs.astro.build/reference/cli-reference)
+- [Collections](https://docs.astro.build/core-concepts/collections)
+- [Development Server](https://docs.astro.build/reference/dev/)
+- [Markdown](https://docs.astro.build/guides/markdown-content)
+- [Publishing Astro components](https://docs.astro.build/guides/publish-to-npm)
+- [Renderers](https://docs.astro.build/reference/renderer-reference)
+- [Styling](https://docs.astro.build/guides/styling)
+- [.astro Syntax](https://docs.astro.build/core-concepts/astro-components)