diff options
author | 2021-06-09 16:37:59 -0400 | |
---|---|---|
committer | 2021-06-09 16:37:59 -0400 | |
commit | 74d67b52c1a585cc7cf47b7088f9a92dbbbd2027 (patch) | |
tree | ec16b8daf3d9163640d0d5e8c21ad51afcfdfac0 | |
parent | cbd5e1d259f03f1ef251b681d0bdd93cec2eadb6 (diff) | |
download | astro-74d67b52c1a585cc7cf47b7088f9a92dbbbd2027.tar.gz astro-74d67b52c1a585cc7cf47b7088f9a92dbbbd2027.tar.zst astro-74d67b52c1a585cc7cf47b7088f9a92dbbbd2027.zip |
Fix broken link in README (#359)
The link to the "Partial Hydration" section from "Markdown" was missing a hyphen. Since I was changing it, I also moved it to the list of link reference definitions at the bottom.
-rw-r--r-- | packages/astro/README.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/astro/README.md b/packages/astro/README.md index a4082a15b..4480b4844 100644 --- a/packages/astro/README.md +++ b/packages/astro/README.md @@ -91,7 +91,7 @@ To learn more about `.astro` files, read our complete [Syntax Guide][docs-syntax Spend less time configuring your tooling and more time writing content. Astro has phenomenal Markdown support (powered by [`remark`][remark]) baked in! -Not only can you use local `.md` files as pages, but Astro also comes with a `<Markdown>` component to turn every page into a Markdown file. Using the `<Markdown>` component in an `.astro` file should feel very similar to [MDX][mdx], but with the ability to use components from any framework (with [partial hydration](#partial-hydration), too)! +Not only can you use local `.md` files as pages, but Astro also comes with a `<Markdown>` component to turn every page into a Markdown file. Using the `<Markdown>` component in an `.astro` file should feel very similar to [MDX][mdx], but with the ability to use components from any framework (with [partial hydration][partial-hydration], too)! To learn more about use Markdown in Astro, read our [Markdown Guide][docs-markdown]. @@ -230,6 +230,7 @@ Astro is able to render [React](https://npm.im/@astrojs/renderer-react), [Svelte [mdx]: https://mdxjs.com/ [mdn-io]: https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API [mdn-ric]: https://developer.mozilla.org/en-US/docs/Web/API/Window/requestIdleCallback +[partial-hydration]: #-partial-hydration [routing]: #-routing [docs-cli]: ./docs/cli.md [docs-publishing]: ./docs/publishing.md |