diff options
Diffstat (limited to 'docs/src/pages/guides')
-rw-r--r-- | docs/src/pages/guides/environment-variables.md | 2 | ||||
-rw-r--r-- | docs/src/pages/guides/markdown-content.md | 2 | ||||
-rw-r--r-- | docs/src/pages/guides/styling.md | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/docs/src/pages/guides/environment-variables.md b/docs/src/pages/guides/environment-variables.md index 26e19ff7f..30ab36398 100644 --- a/docs/src/pages/guides/environment-variables.md +++ b/docs/src/pages/guides/environment-variables.md @@ -6,7 +6,7 @@ description: Learn how to use environment variables in an Astro project. Astro uses Vite for environment variables, and allows you to use any of its methods to get and set environment variables. Note that all environment variables must be prefixed with `PUBLIC_` to be accessible by client side code. -The ability to access private variables on the server side is [still being discussed](https://github.com/snowpackjs/astro/issues/1765). +The ability to access private variables on the server side is [still being discussed](https://github.com/withastro/astro/issues/1765). ## Setting environment variables diff --git a/docs/src/pages/guides/markdown-content.md b/docs/src/pages/guides/markdown-content.md index b3c851fa6..5590f0906 100644 --- a/docs/src/pages/guides/markdown-content.md +++ b/docs/src/pages/guides/markdown-content.md @@ -8,7 +8,7 @@ Astro comes with out-of-the-box Markdown support powered by the expansive [remar ## Parsers -Astro lets you use any Markdown parser you want. It just needs to be a function that follows the `MarkdownParser` type declared inside [this file](https://github.com/snowpackjs/astro/blob/main/packages/astro/src/@types/astro.ts). You can declare it inside `astro.config.mjs`: +Astro lets you use any Markdown parser you want. It just needs to be a function that follows the `MarkdownParser` type declared inside [this file](https://github.com/withastro/astro/blob/main/packages/astro/src/@types/astro.ts). You can declare it inside `astro.config.mjs`: ```js // astro.config.mjs diff --git a/docs/src/pages/guides/styling.md b/docs/src/pages/guides/styling.md index 595804d03..9e5e3bf88 100644 --- a/docs/src/pages/guides/styling.md +++ b/docs/src/pages/guides/styling.md @@ -251,7 +251,7 @@ As an alternative to `src/styles/global.css`, You may also add Tailwind utilitie #### Migrating from v0.19 -As of [version 0.20.0](https://github.com/snowpackjs/astro/releases/tag/astro%400.20.0), Astro will no longer bundle, build and process `public/` files. Previously, we'd recommended putting your tailwind files in the `public/` directory. If you started a project with this pattern, you should move any Tailwind styles into the `src` directory and import them in your template using [Astro.resolve()][astro-resolve]: +As of [version 0.20.0](https://github.com/withastro/astro/releases/tag/astro%400.20.0), Astro will no longer bundle, build and process `public/` files. Previously, we'd recommended putting your tailwind files in the `public/` directory. If you started a project with this pattern, you should move any Tailwind styles into the `src` directory and import them in your template using [Astro.resolve()][astro-resolve]: ```astro <link @@ -622,7 +622,7 @@ Also please check out the [Stylelint][stylelint] project to whip your styles int [fouc]: https://en.wikipedia.org/wiki/Flash_of_unstyled_content [layout-isolated]: https://web.archive.org/web/20210227162315/https://visly.app/blogposts/layout-isolated-components [less]: https://lesscss.org/ -[issues]: https://github.com/snowpackjs/astro/issues +[issues]: https://github.com/withastro/astro/issues [magic-number]: https://css-tricks.com/magic-numbers-in-css/ [material-ui]: https://material.io/components [peace-on-css]: https://didoo.medium.com/let-there-be-peace-on-css-8b26829f1be0 |