diff options
author | 2023-08-09 19:10:40 +0800 | |
---|---|---|
committer | 2023-08-09 12:10:40 +0100 | |
commit | 895afd44475a7e4e3cd5bfdadd2fcb7e228c652f (patch) | |
tree | 0f4ccdf6e467f41e1965c6091d8772c52a05be9e | |
parent | 16161afb2b3a04ca7605fcd16de06efe3fabdef2 (diff) | |
download | astro-895afd44475a7e4e3cd5bfdadd2fcb7e228c652f.tar.gz astro-895afd44475a7e4e3cd5bfdadd2fcb7e228c652f.tar.zst astro-895afd44475a7e4e3cd5bfdadd2fcb7e228c652f.zip |
docs: Fix error link in markdoc (#8006)
-rw-r--r-- | packages/integrations/markdoc/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/markdoc/README.md b/packages/integrations/markdoc/README.md index 4b9772bc7..780b8de9a 100644 --- a/packages/integrations/markdoc/README.md +++ b/packages/integrations/markdoc/README.md @@ -278,7 +278,7 @@ export default defineMarkdocConfig({ ### Use client-side UI components -Tags and nodes are restricted to `.astro` files. To embed client-side UI components in Markdoc, [use a wrapper `.astro` component that renders a framework component](/en/core-concepts/framework-components/#nesting-framework-components) with your desired `client:` directive. +Tags and nodes are restricted to `.astro` files. To embed client-side UI components in Markdoc, [use a wrapper `.astro` component that renders a framework component](https://docs.astro.build/en/core-concepts/framework-components/#nesting-framework-components) with your desired `client:` directive. This example wraps a React `Aside.tsx` component with a `ClientAside.astro` component: |