diff --git a/packages/integrations/mdx/README.md b/packages/integrations/mdx/README.md index 57acc5c8cb8f..0f287b44b1c9 100644 --- a/packages/integrations/mdx/README.md +++ b/packages/integrations/mdx/README.md @@ -319,7 +319,11 @@ will be converted into this HTML: But what if you want to specify your own markup for these blockquotes? In the above example, you could create a custom `
` component (in any language) that either has a `` component or accepts a `children` prop. ```astro title="src/components/Blockquote.astro" -
+--- +const props = Astro.props; +--- + +