summaryrefslogtreecommitdiff
path: root/docs/dev.md
diff options
context:
space:
mode:
authorGravatar Drew Powers <1369770+drwpow@users.noreply.github.com> 2021-05-03 12:26:10 -0600
committerGravatar GitHub <noreply@github.com> 2021-05-03 12:26:10 -0600
commit94038d329705acb79a0f804458821d43f59121db (patch)
tree0f11c52b13a6de9344a83c900466b1bceb888bbe /docs/dev.md
parentc93201a909105bb0ef75278d9635de4b5b8734e7 (diff)
downloadastro-94038d329705acb79a0f804458821d43f59121db.tar.gz
astro-94038d329705acb79a0f804458821d43f59121db.tar.zst
astro-94038d329705acb79a0f804458821d43f59121db.zip
Format (#167)
Diffstat (limited to 'docs/dev.md')
-rw-r--r--docs/dev.md9
1 files changed, 3 insertions, 6 deletions
diff --git a/docs/dev.md b/docs/dev.md
index 15687d1bb..d9223cbbd 100644
--- a/docs/dev.md
+++ b/docs/dev.md
@@ -14,7 +14,7 @@ The dev server will serve the following special routes:
### /400
-This is a custom __400__ status code page. You can add this route by adding a page component to your `src/pages` folder:
+This is a custom **400** status code page. You can add this route by adding a page component to your `src/pages` folder:
```
├── src/
@@ -27,13 +27,10 @@ For any URL you visit that doesn't have a corresponding page, the `400.astro` fi
### /500
-This is a custom __500__ status code page. You can add this route by adding a page component to your `src/pages` folder:
+This is a custom **500** status code page. You can add this route by adding a page component to your `src/pages` folder:
```astro
-├── src/
-│ ├── components/
-│ └── pages/
-│ └── 500.astro
+├── src/ │ ├── components/ │ └── pages/ │ └── 500.astro
```
This page is used any time an error occurs in the dev server.