summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Nikhil Mehta <6815560+technikhil314@users.noreply.github.com> 2021-06-16 17:49:57 +0530
committerGravatar GitHub <noreply@github.com> 2021-06-16 08:19:57 -0400
commitdce6a6ce615ef0bbe981debef65556f4ca910ecc (patch)
tree1aef99b7c849da869ea620e359ffea14cdf278ed
parent251b0b5c064e08ed16586d8e4e2e076aa164786f (diff)
downloadastro-dce6a6ce615ef0bbe981debef65556f4ca910ecc.tar.gz
astro-dce6a6ce615ef0bbe981debef65556f4ca910ecc.tar.zst
astro-dce6a6ce615ef0bbe981debef65556f4ca910ecc.zip
docs: fixed ascii based folder strucure in dev.md (#461)
-rw-r--r--docs/dev.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/dev.md b/docs/dev.md
index d9223cbbd..59a9e285e 100644
--- a/docs/dev.md
+++ b/docs/dev.md
@@ -29,8 +29,11 @@ For any URL you visit that doesn't have a corresponding page, the `400.astro` fi
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.