diff options
author | 2022-08-09 11:09:16 -0300 | |
---|---|---|
committer | 2022-08-09 09:09:16 -0500 | |
commit | 63d43e175453b946e2460f46af581384b77cee23 (patch) | |
tree | 6cb2e419a33ba37cec9da3e142ba1fa514f7f5a2 | |
parent | 4d29163d11e17942f606ecebbfe5a6a2d26a030e (diff) | |
download | astro-63d43e175453b946e2460f46af581384b77cee23.tar.gz astro-63d43e175453b946e2460f46af581384b77cee23.tar.zst astro-63d43e175453b946e2460f46af581384b77cee23.zip |
remove errant remaining details tags (#4212)
-rw-r--r-- | packages/integrations/image/README.md | 2 | ||||
-rw-r--r-- | packages/integrations/mdx/README.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/image/README.md b/packages/integrations/image/README.md index b2496b5e3..d0c7630fb 100644 --- a/packages/integrations/image/README.md +++ b/packages/integrations/image/README.md @@ -338,7 +338,7 @@ const imageUrl = 'https://www.google.com/images/branding/googlelogo/2x/googlelog <Image src={imageUrl} height={200} aspectRatio="16:9" format="avif" /> ``` -### Responsive pictures</strong></summary> +### Responsive pictures The `<Picture />` component can be used to automatically build a `<picture>` with multiple sizes and formats. Check out [MDN](https://developer.mozilla.org/en-US/docs/Learn/HTML/Multimedia_and_embedding/Responsive_images#art_direction) for a deep dive into responsive images and art direction. diff --git a/packages/integrations/mdx/README.md b/packages/integrations/mdx/README.md index d7d27d039..cd795c3fb 100644 --- a/packages/integrations/mdx/README.md +++ b/packages/integrations/mdx/README.md @@ -323,7 +323,7 @@ export default { } ``` -### rehypePlugins</strong> +### rehypePlugins [Rehype plugins](https://github.com/rehypejs/rehype/blob/main/doc/plugins.md) allow you to transform the HTML that your Markdown generates. We recommend checking the [Remark plugin](https://github.com/remarkjs/remark/blob/main/doc/plugins.md) catalog first _before_ considering rehype plugins, since most users want to transform their Markdown syntax instead. If HTML transforms are what you need, we encourage you to browse [awesome-rehype](https://github.com/rehypejs/awesome-rehype) for a full curated list of plugins! |