diff options
author | 2023-09-28 15:48:03 +0200 | |
---|---|---|
committer | 2023-09-28 15:48:03 +0200 | |
commit | ec249f7a983926ba89248a3cc88cb1100a85168f (patch) | |
tree | 3232def95dc4cb3aa832f1ab4e44903b6986fc9e /packages/integrations/mdx | |
parent | 0ab19ba6152ea56c1fffaf9810465b4c29704398 (diff) | |
download | astro-ec249f7a983926ba89248a3cc88cb1100a85168f.tar.gz astro-ec249f7a983926ba89248a3cc88cb1100a85168f.tar.zst astro-ec249f7a983926ba89248a3cc88cb1100a85168f.zip |
update all the readme's for expressive code (#8691)
Co-authored-by: HiDeoo <HiDeoo@users.noreply.github.com>
Co-authored-by: Genteure <Genteure@users.noreply.github.com>
Co-authored-by: Bryce Russell <brycetrussell@gmail.com>
Co-authored-by: Reuben Tier <TheOtterlord@users.noreply.github.com>
Co-authored-by: Hippo <hippotastic@users.noreply.github.com>
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
Co-authored-by: Kevin Zuniga Cuellar <kevinzunigacuellar@users.noreply.github.com>
Diffstat (limited to 'packages/integrations/mdx')
-rw-r--r-- | packages/integrations/mdx/README.md | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/packages/integrations/mdx/README.md b/packages/integrations/mdx/README.md index 01cf26c0f..355c02242 100644 --- a/packages/integrations/mdx/README.md +++ b/packages/integrations/mdx/README.md @@ -42,15 +42,16 @@ npm install @astrojs/mdx Then, apply this integration to your `astro.config.*` file using the `integrations` property: -```js ins={3} "mdx()" -// astro.config.mjs -import { defineConfig } from 'astro/config'; -import mdx from '@astrojs/mdx'; - -export default defineConfig({ - // ... - integrations: [mdx()], -}); +```diff lang="js" "mdx()" + // astro.config.mjs + import { defineConfig } from 'astro/config'; ++ import mdx from '@astrojs/mdx'; + + export default defineConfig({ + // ... + integrations: [mdx()], + // ^^^^^ + }); ``` ### Editor Integration |