summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.changeset/poor-pears-wash.md5
-rw-r--r--examples/README.md6
-rw-r--r--examples/basics/README.md4
-rw-r--r--examples/blog/README.md4
-rw-r--r--examples/component/README.md4
-rw-r--r--examples/deno/README.md4
-rw-r--r--examples/framework-alpine/README.md2
-rw-r--r--examples/framework-lit/README.md2
-rw-r--r--examples/framework-multiple/README.md2
-rw-r--r--examples/framework-preact/README.md2
-rw-r--r--examples/framework-react/README.md2
-rw-r--r--examples/framework-solid/README.md2
-rw-r--r--examples/framework-svelte/README.md2
-rw-r--r--examples/framework-vue/README.md2
-rw-r--r--examples/hackernews/README.md4
-rw-r--r--examples/integration/README.md4
-rw-r--r--examples/minimal/README.md4
-rw-r--r--examples/non-html-pages/README.md4
-rw-r--r--examples/portfolio/README.md2
-rw-r--r--examples/with-markdoc/README.md4
-rw-r--r--examples/with-markdown-plugins/README.md2
-rw-r--r--examples/with-markdown-shiki/README.md2
-rw-r--r--examples/with-mdx/README.md2
-rw-r--r--examples/with-nanostores/README.md2
-rw-r--r--examples/with-tailwindcss/README.md2
-rw-r--r--examples/with-vite-plugin-pwa/README.md4
-rw-r--r--examples/with-vitest/README.md2
27 files changed, 43 insertions, 38 deletions
diff --git a/.changeset/poor-pears-wash.md b/.changeset/poor-pears-wash.md
new file mode 100644
index 000000000..5a7117e93
--- /dev/null
+++ b/.changeset/poor-pears-wash.md
@@ -0,0 +1,5 @@
+---
+'astro': patch
+---
+
+Fix lang unspecified code blocks (markdownlint MD040)
diff --git a/examples/README.md b/examples/README.md
index ab0e5a6c0..1482084d4 100644
--- a/examples/README.md
+++ b/examples/README.md
@@ -2,7 +2,7 @@
The easiest way to check out one of these examples on your machine is by running this command in an empty directory:
-```
+```sh
npm create astro@latest -- --template [EXAMPLE_NAME]
```
@@ -10,12 +10,12 @@ npm create astro@latest -- --template [EXAMPLE_NAME]
Visit [awesome-astro](https://github.com/one-aalam/awesome-astro) for a full list of community examples. You can use `npm create astro@latest` to check out any community examples:
-```
+```sh
npm create astro@latest -- --template [GITHUB_USER]/[REPO_NAME]
```
Paths to examples nested inside of a repo are also supported:
-```
+```sh
npm create astro@latest -- --template [GITHUB_USER]/[REPO_NAME]/path/to/example
```
diff --git a/examples/basics/README.md b/examples/basics/README.md
index 5369073b9..1db3fb399 100644
--- a/examples/basics/README.md
+++ b/examples/basics/README.md
@@ -1,6 +1,6 @@
# Astro Starter Kit: Basics
-```
+```sh
npm create astro@latest -- --template basics
```
@@ -16,7 +16,7 @@ npm create astro@latest -- --template basics
Inside of your Astro project, you'll see the following folders and files:
-```
+```text
/
├── public/
│ └── favicon.svg
diff --git a/examples/blog/README.md b/examples/blog/README.md
index 67d0cfc2e..758716e07 100644
--- a/examples/blog/README.md
+++ b/examples/blog/README.md
@@ -1,6 +1,6 @@
# Astro Starter Kit: Blog
-```
+```sh
npm create astro@latest -- --template blog
```
@@ -25,7 +25,7 @@ Features:
Inside of your Astro project, you'll see the following folders and files:
-```
+```text
├── public/
├── src/
│   ├── components/
diff --git a/examples/component/README.md b/examples/component/README.md
index c92a01a95..f51958529 100644
--- a/examples/component/README.md
+++ b/examples/component/README.md
@@ -2,7 +2,7 @@
This is a template for an Astro component library. Use this template for writing components to use in multiple projects or publish to NPM.
-```
+```sh
npm create astro@latest -- --template component
```
@@ -14,7 +14,7 @@ npm create astro@latest -- --template component
Inside of your Astro project, you'll see the following folders and files:
-```
+```text
/
├── index.ts
├── src
diff --git a/examples/deno/README.md b/examples/deno/README.md
index af49ebcb7..17deeb3b9 100644
--- a/examples/deno/README.md
+++ b/examples/deno/README.md
@@ -4,7 +4,7 @@
[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/deno)
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/deno/devcontainer.json)
-```
+```sh
npm create astro@latest -- --template deno
```
@@ -16,7 +16,7 @@ npm create astro@latest -- --template deno
Inside of your Astro project, you'll see the following folders and files:
-```
+```text
/
├── public/
│ └── favicon.svg
diff --git a/examples/framework-alpine/README.md b/examples/framework-alpine/README.md
index 9c61ea1b0..22cc75374 100644
--- a/examples/framework-alpine/README.md
+++ b/examples/framework-alpine/README.md
@@ -1,6 +1,6 @@
# Astro + AlpineJS Example
-```
+```sh
npm create astro@latest -- --template framework-alpine
```
diff --git a/examples/framework-lit/README.md b/examples/framework-lit/README.md
index 9afdb987c..714d179da 100644
--- a/examples/framework-lit/README.md
+++ b/examples/framework-lit/README.md
@@ -1,6 +1,6 @@
# Astro + Lit Example
-```
+```sh
npm create astro@latest -- --template framework-lit
```
diff --git a/examples/framework-multiple/README.md b/examples/framework-multiple/README.md
index 385b0ade7..30b020eff 100644
--- a/examples/framework-multiple/README.md
+++ b/examples/framework-multiple/README.md
@@ -1,6 +1,6 @@
# Kitchen Sink: Microfrontends with Astro
-```
+```sh
npm create astro@latest -- --template framework-multiple
```
diff --git a/examples/framework-preact/README.md b/examples/framework-preact/README.md
index 8bebec195..04efb2d6e 100644
--- a/examples/framework-preact/README.md
+++ b/examples/framework-preact/README.md
@@ -1,6 +1,6 @@
# Astro + Preact Example
-```
+```sh
npm create astro@latest -- --template framework-preact
```
diff --git a/examples/framework-react/README.md b/examples/framework-react/README.md
index 57afd632a..f036afa8c 100644
--- a/examples/framework-react/README.md
+++ b/examples/framework-react/README.md
@@ -1,6 +1,6 @@
# Astro + React Example
-```
+```sh
npm create astro@latest -- --template framework-react
```
diff --git a/examples/framework-solid/README.md b/examples/framework-solid/README.md
index f95f8d8f5..2943a7692 100644
--- a/examples/framework-solid/README.md
+++ b/examples/framework-solid/README.md
@@ -1,6 +1,6 @@
# Astro + Solid.js Example
-```
+```sh
npm create astro@latest -- --template framework-solid
```
diff --git a/examples/framework-svelte/README.md b/examples/framework-svelte/README.md
index abf0679cc..5c5a24cc0 100644
--- a/examples/framework-svelte/README.md
+++ b/examples/framework-svelte/README.md
@@ -1,6 +1,6 @@
# Astro + Svelte Example
-```
+```sh
npm create astro@latest -- --template framework-svelte
```
diff --git a/examples/framework-vue/README.md b/examples/framework-vue/README.md
index 07f94e1c3..14e778765 100644
--- a/examples/framework-vue/README.md
+++ b/examples/framework-vue/README.md
@@ -1,6 +1,6 @@
# Astro + Vue Example
-```
+```sh
npm create astro@latest -- --template framework-vue
```
diff --git a/examples/hackernews/README.md b/examples/hackernews/README.md
index 042a7807b..55c657dc9 100644
--- a/examples/hackernews/README.md
+++ b/examples/hackernews/README.md
@@ -1,6 +1,6 @@
# Astro Starter Kit: Hackernews
-```
+```sh
npm create astro@latest -- --template hackernews
```
@@ -14,7 +14,7 @@ npm create astro@latest -- --template hackernews
Inside of your Astro project, you'll see the following folders and files:
-```
+```text
/
├── public/
│ └── favicon.svg
diff --git a/examples/integration/README.md b/examples/integration/README.md
index a6709d400..4f0880031 100644
--- a/examples/integration/README.md
+++ b/examples/integration/README.md
@@ -2,7 +2,7 @@
This is a template for an Astro integration. Use this template for writing integrations to use in multiple projects or publish to NPM.
-```
+```sh
npm create astro@latest -- --template integration
```
@@ -14,7 +14,7 @@ npm create astro@latest -- --template integration
Inside of your Astro project, you'll see the following folders and files:
-```
+```text
/
├── index.ts
├── tsconfig.json
diff --git a/examples/minimal/README.md b/examples/minimal/README.md
index 20bad6615..e34a99b44 100644
--- a/examples/minimal/README.md
+++ b/examples/minimal/README.md
@@ -1,6 +1,6 @@
# Astro Starter Kit: Minimal
-```
+```sh
npm create astro@latest -- --template minimal
```
@@ -14,7 +14,7 @@ npm create astro@latest -- --template minimal
Inside of your Astro project, you'll see the following folders and files:
-```
+```text
/
├── public/
├── src/
diff --git a/examples/non-html-pages/README.md b/examples/non-html-pages/README.md
index ecdee84b1..c26b01698 100644
--- a/examples/non-html-pages/README.md
+++ b/examples/non-html-pages/README.md
@@ -4,7 +4,7 @@ Documentation for "Non-HTML Pages":
https://docs.astro.build/en/core-concepts/endpoints/#static-file-endpoints
-```
+```sh
npm create astro@latest -- --template non-html-pages
```
@@ -18,7 +18,7 @@ npm create astro@latest -- --template non-html-pages
Inside of your Astro project, you'll see the following folders and files:
-```
+```text
/
├── public/
├── src/
diff --git a/examples/portfolio/README.md b/examples/portfolio/README.md
index 3c8ee3aa4..312d18b1c 100644
--- a/examples/portfolio/README.md
+++ b/examples/portfolio/README.md
@@ -1,6 +1,6 @@
# Astro Starter Kit: Portfolio
-```
+```sh
npm create astro@latest -- --template portfolio
```
diff --git a/examples/with-markdoc/README.md b/examples/with-markdoc/README.md
index 1a1acc1a5..35afb0f3f 100644
--- a/examples/with-markdoc/README.md
+++ b/examples/with-markdoc/README.md
@@ -2,7 +2,7 @@
This starter showcases the experimental Markdoc integration.
-```
+```sh
npm create astro@latest -- --template with-markdoc
```
@@ -15,7 +15,7 @@ npm create astro@latest -- --template with-markdoc
Inside of your Astro project, you'll see the following folders and files:
-```
+```text
/
├── public/
├── src/
diff --git a/examples/with-markdown-plugins/README.md b/examples/with-markdown-plugins/README.md
index 7f955f6c4..91811541a 100644
--- a/examples/with-markdown-plugins/README.md
+++ b/examples/with-markdown-plugins/README.md
@@ -1,6 +1,6 @@
# Astro Example: Markdown with Plugins
-```
+```sh
npm create astro@latest -- --template with-markdown-plugins
```
diff --git a/examples/with-markdown-shiki/README.md b/examples/with-markdown-shiki/README.md
index 7a26a9e9b..72251f6ba 100644
--- a/examples/with-markdown-shiki/README.md
+++ b/examples/with-markdown-shiki/README.md
@@ -1,6 +1,6 @@
# Astro Example: Markdown with Shiki
-```
+```sh
npm create astro@latest -- --template with-markdown-shiki
```
diff --git a/examples/with-mdx/README.md b/examples/with-mdx/README.md
index 8f6780443..55fe589cf 100644
--- a/examples/with-mdx/README.md
+++ b/examples/with-mdx/README.md
@@ -1,6 +1,6 @@
# Astro Example: MDX
-```
+```sh
npm create astro@latest -- --template with-mdx
```
diff --git a/examples/with-nanostores/README.md b/examples/with-nanostores/README.md
index 7771a9a6a..163c9129a 100644
--- a/examples/with-nanostores/README.md
+++ b/examples/with-nanostores/README.md
@@ -1,6 +1,6 @@
# Astro Example: Nanostores
-```
+```sh
npm create astro@latest -- --template with-nanostores
```
diff --git a/examples/with-tailwindcss/README.md b/examples/with-tailwindcss/README.md
index 54dbc84be..8b512bb7f 100644
--- a/examples/with-tailwindcss/README.md
+++ b/examples/with-tailwindcss/README.md
@@ -1,6 +1,6 @@
# Astro with Tailwind
-```
+```sh
npm create astro@latest -- --template with-tailwindcss
```
diff --git a/examples/with-vite-plugin-pwa/README.md b/examples/with-vite-plugin-pwa/README.md
index 555d3e7de..3cc99dbc9 100644
--- a/examples/with-vite-plugin-pwa/README.md
+++ b/examples/with-vite-plugin-pwa/README.md
@@ -1,6 +1,6 @@
# Astro Starter Kit: Vite PWA
-```
+```sh
npm create astro@latest -- --template with-vite-plugin-pwa
```
@@ -14,7 +14,7 @@ npm create astro@latest -- --template with-vite-plugin-pwa
Inside of your Astro project, you'll see the following folders and files:
-```
+```text
/
├── public/
├── src/
diff --git a/examples/with-vitest/README.md b/examples/with-vitest/README.md
index 5187424e0..8b831d88c 100644
--- a/examples/with-vitest/README.md
+++ b/examples/with-vitest/README.md
@@ -1,6 +1,6 @@
# Astro + [Vitest](https://vitest.dev/) Example
-```
+```sh
npm create astro@latest -- --template with-vitest
```