@astrojs/mdx 0.0.0-cloudcannon-fix-20230306211609

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (140) hide show
  1. package/.turbo/turbo-build.log +5 -0
  2. package/CHANGELOG.md +654 -0
  3. package/LICENSE +61 -0
  4. package/README.md +206 -0
  5. package/dist/index.d.ts +12 -0
  6. package/dist/index.js +145 -0
  7. package/dist/plugins.d.ts +10 -0
  8. package/dist/plugins.js +177 -0
  9. package/dist/rehype-collect-headings.d.ts +2 -0
  10. package/dist/rehype-collect-headings.js +12 -0
  11. package/dist/rehype-meta-string.d.ts +6 -0
  12. package/dist/rehype-meta-string.js +15 -0
  13. package/dist/remark-prism.d.ts +2 -0
  14. package/dist/remark-prism.js +17 -0
  15. package/dist/remark-shiki.d.ts +3 -0
  16. package/dist/remark-shiki.js +69 -0
  17. package/dist/utils.d.ts +18 -0
  18. package/dist/utils.js +81 -0
  19. package/package.json +76 -0
  20. package/src/index.ts +186 -0
  21. package/src/plugins.ts +233 -0
  22. package/src/rehype-collect-headings.ts +11 -0
  23. package/src/rehype-meta-string.ts +17 -0
  24. package/src/remark-prism.ts +18 -0
  25. package/src/remark-shiki.ts +95 -0
  26. package/src/utils.ts +102 -0
  27. package/test/css-head-mdx.test.js +85 -0
  28. package/test/fixtures/css-head-mdx/node_modules/.bin/astro +17 -0
  29. package/test/fixtures/css-head-mdx/package.json +10 -0
  30. package/test/fixtures/css-head-mdx/src/components/BaseHead.astro +11 -0
  31. package/test/fixtures/css-head-mdx/src/components/GenericComponent.astro +1 -0
  32. package/test/fixtures/css-head-mdx/src/components/HelloWorld.astro +11 -0
  33. package/test/fixtures/css-head-mdx/src/components/MDXWrapper.astro +9 -0
  34. package/test/fixtures/css-head-mdx/src/components/P.astro +3 -0
  35. package/test/fixtures/css-head-mdx/src/components/SmallCaps.astro +3 -0
  36. package/test/fixtures/css-head-mdx/src/components/UsingMdx.astro +8 -0
  37. package/test/fixtures/css-head-mdx/src/components/WithHoistedScripts.astro +6 -0
  38. package/test/fixtures/css-head-mdx/src/content/blog/_styles.css +3 -0
  39. package/test/fixtures/css-head-mdx/src/content/blog/using-mdx.mdx +6 -0
  40. package/test/fixtures/css-head-mdx/src/content/posts/test.mdx +5 -0
  41. package/test/fixtures/css-head-mdx/src/content/posts/using-component.mdx +13 -0
  42. package/test/fixtures/css-head-mdx/src/layouts/ContentLayout.astro +18 -0
  43. package/test/fixtures/css-head-mdx/src/layouts/One.astro +15 -0
  44. package/test/fixtures/css-head-mdx/src/layouts/Three.astro +6 -0
  45. package/test/fixtures/css-head-mdx/src/layouts/Two.astro +6 -0
  46. package/test/fixtures/css-head-mdx/src/pages/DirectContentUsage.astro +17 -0
  47. package/test/fixtures/css-head-mdx/src/pages/indexOne.astro +10 -0
  48. package/test/fixtures/css-head-mdx/src/pages/indexThree.astro +10 -0
  49. package/test/fixtures/css-head-mdx/src/pages/indexTwo.astro +10 -0
  50. package/test/fixtures/css-head-mdx/src/pages/noLayoutWithComponent.mdx +22 -0
  51. package/test/fixtures/css-head-mdx/src/pages/posts/[post].astro +18 -0
  52. package/test/fixtures/css-head-mdx/src/pages/remote.astro +17 -0
  53. package/test/fixtures/css-head-mdx/src/pages/testOne.mdx +15 -0
  54. package/test/fixtures/css-head-mdx/src/pages/testThree.mdx +15 -0
  55. package/test/fixtures/css-head-mdx/src/pages/testTwo.mdx +15 -0
  56. package/test/fixtures/css-head-mdx/src/styles/global.css +3 -0
  57. package/test/fixtures/css-head-mdx/src/test.mdx +14 -0
  58. package/test/fixtures/mdx-astro-markdown-remarkRehype/src/pages/index.mdx +5 -0
  59. package/test/fixtures/mdx-component/src/components/Test.mdx +3 -0
  60. package/test/fixtures/mdx-component/src/components/WithFragment.mdx +3 -0
  61. package/test/fixtures/mdx-component/src/pages/glob.astro +20 -0
  62. package/test/fixtures/mdx-component/src/pages/index.astro +5 -0
  63. package/test/fixtures/mdx-component/src/pages/w-fragment.astro +5 -0
  64. package/test/fixtures/mdx-escape/src/components/Em.astro +7 -0
  65. package/test/fixtures/mdx-escape/src/components/P.astro +1 -0
  66. package/test/fixtures/mdx-escape/src/components/Title.astro +1 -0
  67. package/test/fixtures/mdx-escape/src/pages/html-tag.mdx +5 -0
  68. package/test/fixtures/mdx-escape/src/pages/index.mdx +13 -0
  69. package/test/fixtures/mdx-frontmatter/src/layouts/Base.astro +38 -0
  70. package/test/fixtures/mdx-frontmatter/src/pages/glob.json.js +9 -0
  71. package/test/fixtures/mdx-frontmatter/src/pages/index.mdx +10 -0
  72. package/test/fixtures/mdx-frontmatter/src/pages/with-headings.mdx +7 -0
  73. package/test/fixtures/mdx-frontmatter-injection/astro.config.mjs +12 -0
  74. package/test/fixtures/mdx-frontmatter-injection/node_modules/.bin/astro +17 -0
  75. package/test/fixtures/mdx-frontmatter-injection/package.json +12 -0
  76. package/test/fixtures/mdx-frontmatter-injection/src/layouts/Base.astro +17 -0
  77. package/test/fixtures/mdx-frontmatter-injection/src/markdown-plugins.mjs +27 -0
  78. package/test/fixtures/mdx-frontmatter-injection/src/pages/glob.json.js +6 -0
  79. package/test/fixtures/mdx-frontmatter-injection/src/pages/page-1.mdx +8 -0
  80. package/test/fixtures/mdx-frontmatter-injection/src/pages/page-2.mdx +24 -0
  81. package/test/fixtures/mdx-get-headings/src/pages/pages.json.js +11 -0
  82. package/test/fixtures/mdx-get-headings/src/pages/test-with-frontmatter.mdx +45 -0
  83. package/test/fixtures/mdx-get-headings/src/pages/test-with-jsx-expressions.mdx +8 -0
  84. package/test/fixtures/mdx-get-headings/src/pages/test.mdx +9 -0
  85. package/test/fixtures/mdx-get-static-paths/src/content/1.mdx +5 -0
  86. package/test/fixtures/mdx-get-static-paths/src/pages/[slug].astro +34 -0
  87. package/test/fixtures/mdx-infinite-loop/astro.config.ts +6 -0
  88. package/test/fixtures/mdx-infinite-loop/node_modules/.bin/astro +17 -0
  89. package/test/fixtures/mdx-infinite-loop/package.json +10 -0
  90. package/test/fixtures/mdx-infinite-loop/src/components/Test.js +3 -0
  91. package/test/fixtures/mdx-infinite-loop/src/pages/doc.mdx +6 -0
  92. package/test/fixtures/mdx-infinite-loop/src/pages/index.astro +5 -0
  93. package/test/fixtures/mdx-namespace/astro.config.mjs +6 -0
  94. package/test/fixtures/mdx-namespace/node_modules/.bin/astro +17 -0
  95. package/test/fixtures/mdx-namespace/package.json +10 -0
  96. package/test/fixtures/mdx-namespace/src/components/Component.jsx +6 -0
  97. package/test/fixtures/mdx-namespace/src/pages/object.mdx +3 -0
  98. package/test/fixtures/mdx-namespace/src/pages/star.mdx +3 -0
  99. package/test/fixtures/mdx-page/astro.config.ts +5 -0
  100. package/test/fixtures/mdx-page/node_modules/.bin/astro +17 -0
  101. package/test/fixtures/mdx-page/package.json +9 -0
  102. package/test/fixtures/mdx-page/src/pages/index.mdx +3 -0
  103. package/test/fixtures/mdx-page/src/styles.css +3 -0
  104. package/test/fixtures/mdx-plugins/src/pages/with-plugins.mdx +25 -0
  105. package/test/fixtures/mdx-plus-react/astro.config.mjs +6 -0
  106. package/test/fixtures/mdx-plus-react/node_modules/.bin/astro +17 -0
  107. package/test/fixtures/mdx-plus-react/package.json +10 -0
  108. package/test/fixtures/mdx-plus-react/src/components/Component.jsx +5 -0
  109. package/test/fixtures/mdx-plus-react/src/pages/index.astro +11 -0
  110. package/test/fixtures/mdx-slots/src/components/Slotted.astro +4 -0
  111. package/test/fixtures/mdx-slots/src/components/Test.mdx +15 -0
  112. package/test/fixtures/mdx-slots/src/pages/glob.astro +11 -0
  113. package/test/fixtures/mdx-slots/src/pages/index.astro +5 -0
  114. package/test/fixtures/mdx-syntax-hightlighting/src/pages/index.mdx +9 -0
  115. package/test/fixtures/mdx-url-export/src/pages/pages.json.js +9 -0
  116. package/test/fixtures/mdx-url-export/src/pages/test-1.mdx +1 -0
  117. package/test/fixtures/mdx-url-export/src/pages/test-2.mdx +1 -0
  118. package/test/fixtures/mdx-url-export/src/pages/with-url-override.mdx +3 -0
  119. package/test/fixtures/mdx-vite-env-vars/astro.config.mjs +9 -0
  120. package/test/fixtures/mdx-vite-env-vars/node_modules/.bin/astro +17 -0
  121. package/test/fixtures/mdx-vite-env-vars/package.json +7 -0
  122. package/test/fixtures/mdx-vite-env-vars/src/pages/frontmatter.json.js +7 -0
  123. package/test/fixtures/mdx-vite-env-vars/src/pages/vite-env-vars.mdx +38 -0
  124. package/test/mdx-astro-markdown-remarkRehype.test.js +85 -0
  125. package/test/mdx-component.test.js +191 -0
  126. package/test/mdx-escape.test.js +32 -0
  127. package/test/mdx-frontmatter-injection.test.js +53 -0
  128. package/test/mdx-frontmatter.test.js +77 -0
  129. package/test/mdx-get-headings.test.js +194 -0
  130. package/test/mdx-get-static-paths.test.js +32 -0
  131. package/test/mdx-infinite-loop.test.js +30 -0
  132. package/test/mdx-namespace.test.js +83 -0
  133. package/test/mdx-page.test.js +64 -0
  134. package/test/mdx-plugins.test.js +285 -0
  135. package/test/mdx-plus-react.test.js +25 -0
  136. package/test/mdx-slots.js +124 -0
  137. package/test/mdx-syntax-highlighting.test.js +145 -0
  138. package/test/mdx-url-export.test.js +28 -0
  139. package/test/mdx-vite-env-vars.test.js +54 -0
  140. package/tsconfig.json +10 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,654 @@
1
+ # @astrojs/mdx
2
+
3
+ ## 0.0.0-cloudcannon-fix-20230306211609
4
+
5
+ ### Minor Changes
6
+
7
+ - [#6213](https://github.com/withastro/astro/pull/6213) [`afbbc4d5b`](https://github.com/withastro/astro/commit/afbbc4d5bfafc1779bac00b41c2a1cb1c90f2808) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Updated compilation settings to disable downlevelling for Node 14
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [[`afbbc4d5b`](https://github.com/withastro/astro/commit/afbbc4d5bfafc1779bac00b41c2a1cb1c90f2808)]:
12
+ - @astrojs/prism@0.0.0-cloudcannon-fix-20230306211609
13
+ - @astrojs/markdown-remark@0.0.0-cloudcannon-fix-20230306211609
14
+
15
+ ## 0.17.2
16
+
17
+ ### Patch Changes
18
+
19
+ - [#6296](https://github.com/withastro/astro/pull/6296) [`075b87e8b`](https://github.com/withastro/astro/commit/075b87e8b72a69a608cd2ff1196dc0989e2cf1e1) Thanks [@RaphaelBossek](https://github.com/RaphaelBossek)! - Update to `es-module-lexer@1.1.1`
20
+
21
+ ## 0.17.1
22
+
23
+ - Updated to es-module-lexer@1.1.1
24
+
25
+ ## 0.17.0
26
+
27
+ ### Minor Changes
28
+
29
+ - [#6253](https://github.com/withastro/astro/pull/6253) [`0049fda62`](https://github.com/withastro/astro/commit/0049fda62fa8650a0d250adb00a2c5d82679aeaf) Thanks [@bluwy](https://github.com/bluwy)! - Support rehype plugins that inject namespaced attributes. This introduces a breaking change if you use [custom components for HTML elements](https://docs.astro.build/en/guides/markdown-content/#assigning-custom-components-to-html-elements), where the prop passed to the component will be normal HTML casing, e.g. `class` instead of `className`, and `xlink:href` instead of `xlinkHref`.
30
+
31
+ ## 0.16.2
32
+
33
+ ### Patch Changes
34
+
35
+ - [#6252](https://github.com/withastro/astro/pull/6252) [`0fbcf838a`](https://github.com/withastro/astro/commit/0fbcf838a775d3b07e7c2372888a8aa6c190278e) Thanks [@bluwy](https://github.com/bluwy)! - Revert previous breaking change
36
+
37
+ ## 0.16.1
38
+
39
+ ### Patch Changes
40
+
41
+ - [#6243](https://github.com/withastro/astro/pull/6243) [`4f6ecba4c`](https://github.com/withastro/astro/commit/4f6ecba4c1b35bacbbc0097854ee2b7b8c878e71) Thanks [@bluwy](https://github.com/bluwy)! - Support rehype plugins that inject namespaced attributes
42
+
43
+ ## 0.16.0
44
+
45
+ ### Minor Changes
46
+
47
+ - [#6050](https://github.com/withastro/astro/pull/6050) [`2ab32b59e`](https://github.com/withastro/astro/commit/2ab32b59ef0a28d34757f2c2adb9cf2baa86855e) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix: load syntax highlighters after MDX remark plugins. This keeps MDX consistent with Astro's markdown behavior.
48
+
49
+ ### Patch Changes
50
+
51
+ - [#6062](https://github.com/withastro/astro/pull/6062) [`c6cf847bd`](https://github.com/withastro/astro/commit/c6cf847bd0b6bef3c51a5710fba5ca43b11e46f9) Thanks [@delucis](https://github.com/delucis)! - Update MDX README
52
+
53
+ ## 0.15.2
54
+
55
+ ### Patch Changes
56
+
57
+ - [#5478](https://github.com/withastro/astro/pull/5478) [`1c7eef308`](https://github.com/withastro/astro/commit/1c7eef308e808aa5ed4662b53e67ec8d1b814d1f) Thanks [@nemo0](https://github.com/nemo0)! - Update READMEs for consistency
58
+
59
+ ## 0.15.1
60
+
61
+ ### Patch Changes
62
+
63
+ - [#5978](https://github.com/withastro/astro/pull/5978) [`7abb1e905`](https://github.com/withastro/astro/commit/7abb1e9056c4b4fd0abfced347df32a41cdfbf28) Thanks [@HiDeoo](https://github.com/HiDeoo)! - Fix MDX heading IDs generation when using a frontmatter reference
64
+
65
+ - Updated dependencies [[`7abb1e905`](https://github.com/withastro/astro/commit/7abb1e9056c4b4fd0abfced347df32a41cdfbf28)]:
66
+ - @astrojs/markdown-remark@2.0.1
67
+
68
+ ## 0.15.0
69
+
70
+ ### Minor Changes
71
+
72
+ - [#5684](https://github.com/withastro/astro/pull/5684) [`a9c292026`](https://github.com/withastro/astro/commit/a9c2920264e36cc5dc05f4adc1912187979edb0d) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Refine Markdown and MDX configuration options for ease-of-use. & [#5769](https://github.com/withastro/astro/pull/5769) [`93e633922`](https://github.com/withastro/astro/commit/93e633922c2e449df3bb2357b3683af1d3c0e07b) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Introduce a `smartypants` flag to opt-out of Astro's default SmartyPants plugin.
73
+
74
+ - **Markdown**
75
+
76
+ - **Replace the `extendDefaultPlugins` option** with a `gfm` boolean and a `smartypants` boolean. These are enabled by default, and can be disabled to remove GitHub-Flavored Markdown and SmartyPants.
77
+
78
+ - Ensure GitHub-Flavored Markdown and SmartyPants are applied whether or not custom `remarkPlugins` or `rehypePlugins` are configured. If you want to apply custom plugins _and_ remove Astro's default plugins, manually set `gfm: false` and `smartypants: false` in your config.
79
+
80
+ - **Migrate `extendDefaultPlugins` to `gfm` and `smartypants`**
81
+
82
+ You may have disabled Astro's built-in plugins (GitHub-Flavored Markdown and Smartypants) with the `extendDefaultPlugins` option. This has now been split into 2 flags to disable each plugin individually:
83
+
84
+ - `markdown.gfm` to disable GitHub-Flavored Markdown
85
+ - `markdown.smartypants` to disable SmartyPants
86
+
87
+ ```diff
88
+ // astro.config.mjs
89
+ import { defineConfig } from 'astro/config';
90
+
91
+ export default defineConfig({
92
+ markdown: {
93
+ - extendDefaultPlugins: false,
94
+ + smartypants: false,
95
+ + gfm: false,
96
+ }
97
+ });
98
+ ```
99
+
100
+ Additionally, applying remark and rehype plugins **no longer disables** `gfm` and `smartypants`. You will need to opt-out manually by setting `gfm` and `smartypants` to `false`.
101
+
102
+ - **MDX**
103
+
104
+ - Support _all_ Markdown configuration options (except `drafts`) from your MDX integration config. This includes `syntaxHighlighting` and `shikiConfig` options to further customize the MDX renderer.
105
+
106
+ - Simplify `extendPlugins` to an `extendMarkdownConfig` option. MDX options will default to their equivalent in your Markdown config. By setting `extendMarkdownConfig` to false, you can "eject" to set your own syntax highlighting, plugins, and more.
107
+
108
+ - **Migrate MDX's `extendPlugins` to `extendMarkdownConfig`**
109
+
110
+ You may have used the `extendPlugins` option to manage plugin defaults in MDX. This has been replaced by 3 flags:
111
+
112
+ - `extendMarkdownConfig` (`true` by default) to toggle Markdown config inheritance. This replaces the `extendPlugins: 'markdown'` option.
113
+ - `gfm` (`true` by default) and `smartypants` (`true` by default) to toggle GitHub-Flavored Markdown and SmartyPants in MDX. This replaces the `extendPlugins: 'defaults'` option.
114
+
115
+ - [#5687](https://github.com/withastro/astro/pull/5687) [`e2019be6f`](https://github.com/withastro/astro/commit/e2019be6ffa46fa33d92cfd346f9ecbe51bb7144) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Give remark and rehype plugins access to user frontmatter via frontmatter injection. This means `data.astro.frontmatter` is now the _complete_ Markdown or MDX document's frontmatter, rather than an empty object.
116
+
117
+ This allows plugin authors to modify existing frontmatter, or compute new properties based on other properties. For example, say you want to compute a full image URL based on an `imageSrc` slug in your document frontmatter:
118
+
119
+ ```ts
120
+ export function remarkInjectSocialImagePlugin() {
121
+ return function (tree, file) {
122
+ const { frontmatter } = file.data.astro;
123
+ frontmatter.socialImageSrc = new URL(frontmatter.imageSrc, 'https://my-blog.com/').pathname;
124
+ };
125
+ }
126
+ ```
127
+
128
+ When using Content Collections, you can access this modified frontmatter using the `remarkPluginFrontmatter` property returned when rendering an entry.
129
+
130
+ **Migration instructions**
131
+
132
+ Plugin authors should now **check for user frontmatter when applying defaults.**
133
+
134
+ For example, say a remark plugin wants to apply a default `title` if none is present. Add a conditional to check if the property is present, and update if none exists:
135
+
136
+ ```diff
137
+ export function remarkInjectTitlePlugin() {
138
+ return function (tree, file) {
139
+ const { frontmatter } = file.data.astro;
140
+ + if (!frontmatter.title) {
141
+ frontmatter.title = 'Default title';
142
+ + }
143
+ }
144
+ }
145
+ ```
146
+
147
+ This differs from previous behavior, where a Markdown file's frontmatter would _always_ override frontmatter injected via remark or reype.
148
+
149
+ - [#5891](https://github.com/withastro/astro/pull/5891) [`05caf445d`](https://github.com/withastro/astro/commit/05caf445d4d2728f1010aeb2179a9e756c2fd17d) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Remove deprecated Markdown APIs from Astro v0.X. This includes `getHeaders()`, the `.astro` property for layouts, and the `rawContent()` and `compiledContent()` error messages for MDX.
150
+
151
+ - [#5782](https://github.com/withastro/astro/pull/5782) [`1f92d64ea`](https://github.com/withastro/astro/commit/1f92d64ea35c03fec43aff64eaf704dc5a9eb30a) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Remove support for Node 14. Minimum supported Node version is now >=16.12.0
152
+
153
+ - [#5825](https://github.com/withastro/astro/pull/5825) [`52209ca2a`](https://github.com/withastro/astro/commit/52209ca2ad72a30854947dcb3a90ab4db0ac0a6f) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Baseline the experimental `contentCollections` flag. You're free to remove this from your astro config!
154
+
155
+ ```diff
156
+ import { defineConfig } from 'astro/config';
157
+
158
+ export default defineConfig({
159
+ - experimental: { contentCollections: true }
160
+ })
161
+ ```
162
+
163
+ ### Patch Changes
164
+
165
+ - [#5837](https://github.com/withastro/astro/pull/5837) [`12f65a4d5`](https://github.com/withastro/astro/commit/12f65a4d55e3fd2993c2f67b18794dd536280c69) Thanks [@giuseppelt](https://github.com/giuseppelt)! - fix shiki css class replace logic
166
+
167
+ - [#5741](https://github.com/withastro/astro/pull/5741) [`000d3e694`](https://github.com/withastro/astro/commit/000d3e6940839c2aebba1984e6fb3b133cec6749) Thanks [@delucis](https://github.com/delucis)! - Fix broken links in README
168
+
169
+ - Updated dependencies [[`93e633922`](https://github.com/withastro/astro/commit/93e633922c2e449df3bb2357b3683af1d3c0e07b), [`e2019be6f`](https://github.com/withastro/astro/commit/e2019be6ffa46fa33d92cfd346f9ecbe51bb7144), [`1f92d64ea`](https://github.com/withastro/astro/commit/1f92d64ea35c03fec43aff64eaf704dc5a9eb30a), [`12f65a4d5`](https://github.com/withastro/astro/commit/12f65a4d55e3fd2993c2f67b18794dd536280c69), [`16107b6a1`](https://github.com/withastro/astro/commit/16107b6a10514ef1b563e585ec9add4b14f42b94), [`a9c292026`](https://github.com/withastro/astro/commit/a9c2920264e36cc5dc05f4adc1912187979edb0d), [`52209ca2a`](https://github.com/withastro/astro/commit/52209ca2ad72a30854947dcb3a90ab4db0ac0a6f), [`7572f7402`](https://github.com/withastro/astro/commit/7572f7402238da37de748be58d678fedaf863b53)]:
170
+ - @astrojs/markdown-remark@2.0.0
171
+ - @astrojs/prism@2.0.0
172
+
173
+ ## 1.0.0-beta.2
174
+
175
+ <details>
176
+ <summary>See changes in 1.0.0-beta.2</summary>
177
+
178
+ ### Major Changes
179
+
180
+ - [#5825](https://github.com/withastro/astro/pull/5825) [`52209ca2a`](https://github.com/withastro/astro/commit/52209ca2ad72a30854947dcb3a90ab4db0ac0a6f) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Baseline the experimental `contentCollections` flag. You're free to remove this from your astro config!
181
+
182
+ ```diff
183
+ import { defineConfig } from 'astro/config';
184
+
185
+ export default defineConfig({
186
+ - experimental: { contentCollections: true }
187
+ })
188
+ ```
189
+
190
+ ### Minor Changes
191
+
192
+ - [#5782](https://github.com/withastro/astro/pull/5782) [`1f92d64ea`](https://github.com/withastro/astro/commit/1f92d64ea35c03fec43aff64eaf704dc5a9eb30a) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Remove support for Node 14. Minimum supported Node version is now >=16.12.0
193
+
194
+ ### Patch Changes
195
+
196
+ - [#5837](https://github.com/withastro/astro/pull/5837) [`12f65a4d5`](https://github.com/withastro/astro/commit/12f65a4d55e3fd2993c2f67b18794dd536280c69) Thanks [@giuseppelt](https://github.com/giuseppelt)! - fix shiki css class replace logic
197
+
198
+ - Updated dependencies [[`1f92d64ea`](https://github.com/withastro/astro/commit/1f92d64ea35c03fec43aff64eaf704dc5a9eb30a), [`12f65a4d5`](https://github.com/withastro/astro/commit/12f65a4d55e3fd2993c2f67b18794dd536280c69), [`16107b6a1`](https://github.com/withastro/astro/commit/16107b6a10514ef1b563e585ec9add4b14f42b94), [`52209ca2a`](https://github.com/withastro/astro/commit/52209ca2ad72a30854947dcb3a90ab4db0ac0a6f), [`7572f7402`](https://github.com/withastro/astro/commit/7572f7402238da37de748be58d678fedaf863b53)]:
199
+ - @astrojs/prism@2.0.0-beta.0
200
+ - @astrojs/markdown-remark@2.0.0-beta.2
201
+
202
+ </details>
203
+
204
+ ## 0.15.0-beta.1
205
+
206
+ <details>
207
+ <summary>See changes in 0.15.0-beta.1</summary>
208
+
209
+ ### Minor Changes
210
+
211
+ - [#5769](https://github.com/withastro/astro/pull/5769) [`93e633922`](https://github.com/withastro/astro/commit/93e633922c2e449df3bb2357b3683af1d3c0e07b) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Introduce a `smartypants` flag to opt-out of Astro's default SmartyPants plugin.
212
+
213
+ ```js
214
+ {
215
+ markdown: {
216
+ smartypants: false,
217
+ }
218
+ }
219
+ ```
220
+
221
+ #### Migration
222
+
223
+ You may have disabled Astro's built-in plugins (GitHub-Flavored Markdown and Smartypants) with the `extendDefaultPlugins` option. This has now been split into 2 flags to disable each plugin individually:
224
+
225
+ - `markdown.gfm` to disable GitHub-Flavored Markdown
226
+ - `markdown.smartypants` to disable SmartyPants
227
+
228
+ ```diff
229
+ // astro.config.mjs
230
+ import { defineConfig } from 'astro/config';
231
+
232
+ export default defineConfig({
233
+ markdown: {
234
+ - extendDefaultPlugins: false,
235
+ + smartypants: false,
236
+ + gfm: false,
237
+ }
238
+ });
239
+ ```
240
+
241
+ ### Patch Changes
242
+
243
+ - [#5741](https://github.com/withastro/astro/pull/5741) [`000d3e694`](https://github.com/withastro/astro/commit/000d3e6940839c2aebba1984e6fb3b133cec6749) Thanks [@delucis](https://github.com/delucis)! - Fix broken links in README
244
+
245
+ - Updated dependencies [[`93e633922`](https://github.com/withastro/astro/commit/93e633922c2e449df3bb2357b3683af1d3c0e07b)]:
246
+ - @astrojs/markdown-remark@2.0.0-beta.1
247
+
248
+ </details>
249
+
250
+ ## 0.15.0-beta.0
251
+
252
+ <details>
253
+ <summary>See changes in 0.15.0-beta.0</summary>
254
+
255
+ ### Minor Changes
256
+
257
+ - [#5687](https://github.com/withastro/astro/pull/5687) [`e2019be6f`](https://github.com/withastro/astro/commit/e2019be6ffa46fa33d92cfd346f9ecbe51bb7144) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Give remark and rehype plugins access to user frontmatter via frontmatter injection. This means `data.astro.frontmatter` is now the _complete_ Markdown or MDX document's frontmatter, rather than an empty object.
258
+
259
+ This allows plugin authors to modify existing frontmatter, or compute new properties based on other properties. For example, say you want to compute a full image URL based on an `imageSrc` slug in your document frontmatter:
260
+
261
+ ```ts
262
+ export function remarkInjectSocialImagePlugin() {
263
+ return function (tree, file) {
264
+ const { frontmatter } = file.data.astro;
265
+ frontmatter.socialImageSrc = new URL(frontmatter.imageSrc, 'https://my-blog.com/').pathname;
266
+ };
267
+ }
268
+ ```
269
+
270
+ #### Content Collections - new `remarkPluginFrontmatter` property
271
+
272
+ We have changed _inject_ frontmatter to _modify_ frontmatter in our docs to improve discoverability. This is based on support forum feedback, where "injection" is rarely the term used.
273
+
274
+ To reflect this, the `injectedFrontmatter` property has been renamed to `remarkPluginFrontmatter`. This should clarify this plugin is still separate from the `data` export Content Collections expose today.
275
+
276
+ #### Migration instructions
277
+
278
+ Plugin authors should now **check for user frontmatter when applying defaults.**
279
+
280
+ For example, say a remark plugin wants to apply a default `title` if none is present. Add a conditional to check if the property is present, and update if none exists:
281
+
282
+ ```diff
283
+ export function remarkInjectTitlePlugin() {
284
+ return function (tree, file) {
285
+ const { frontmatter } = file.data.astro;
286
+ + if (!frontmatter.title) {
287
+ frontmatter.title = 'Default title';
288
+ + }
289
+ }
290
+ }
291
+ ```
292
+
293
+ This differs from previous behavior, where a Markdown file's frontmatter would _always_ override frontmatter injected via remark or reype.
294
+
295
+ - [#5684](https://github.com/withastro/astro/pull/5684) [`a9c292026`](https://github.com/withastro/astro/commit/a9c2920264e36cc5dc05f4adc1912187979edb0d) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Refine Markdown and MDX configuration options for ease-of-use.
296
+
297
+ #### Markdown
298
+
299
+ - **Remove `remark-smartypants`** from Astro's default Markdown plugins.
300
+ - **Replace the `extendDefaultPlugins` option** with a simplified `gfm` boolean. This is enabled by default, and can be disabled to remove GitHub-Flavored Markdown.
301
+ - Ensure GitHub-Flavored Markdown is applied whether or not custom `remarkPlugins` or `rehypePlugins` are configured. If you want to apply custom plugins _and_ remove GFM, manually set `gfm: false` in your config.
302
+
303
+ #### MDX
304
+
305
+ - Support _all_ Markdown configuration options (except `drafts`) from your MDX integration config. This includes `syntaxHighlighting` and `shikiConfig` options to further customize the MDX renderer.
306
+ - Simplify `extendDefaults` to an `extendMarkdownConfig` option. MDX options will default to their equivalent in your Markdown config. By setting `extendMarkdownConfig` to false, you can "eject" to set your own syntax highlighting, plugins, and more.
307
+
308
+ #### Migration
309
+
310
+ To preserve your existing Markdown and MDX setup, you may need some configuration changes:
311
+
312
+ ##### Smartypants manual installation
313
+
314
+ [Smartypants](https://github.com/silvenon/remark-smartypants) has been removed from Astro's default setup. If you rely on this plugin, [install `remark-smartypants`](https://github.com/silvenon/remark-smartypants#installing) and apply to your `astro.config.*`:
315
+
316
+ ```diff
317
+ // astro.config.mjs
318
+ import { defineConfig } from 'astro/config';
319
+ + import smartypants from 'remark-smartypants';
320
+
321
+ export default defineConfig({
322
+ markdown: {
323
+ + remarkPlugins: [smartypants],
324
+ }
325
+ });
326
+ ```
327
+
328
+ ##### Migrate `extendDefaultPlugins` to `gfm`
329
+
330
+ You may have disabled Astro's built-in plugins (GitHub-Flavored Markdown and Smartypants) with the `extendDefaultPlugins` option. Since Smartypants has been removed, this has been renamed to `gfm`.
331
+
332
+ ```diff
333
+ // astro.config.mjs
334
+ import { defineConfig } from 'astro/config';
335
+
336
+ export default defineConfig({
337
+ markdown: {
338
+ - extendDefaultPlugins: false,
339
+ + gfm: false,
340
+ }
341
+ });
342
+ ```
343
+
344
+ Additionally, applying remark and rehype plugins **no longer disables** `gfm`. You will need to opt-out manually by setting `gfm` to `false`.
345
+
346
+ ##### Migrate MDX's `extendPlugins` to `extendMarkdownConfig`
347
+
348
+ You may have used the `extendPlugins` option to manage plugin defaults in MDX. This has been replaced by 2 flags:
349
+
350
+ - `extendMarkdownConfig` (`true` by default) to toggle Markdown config inheritance. This replaces the `extendPlugins: 'markdown'` option.
351
+ - `gfm` (`true` by default) to toggle GitHub-Flavored Markdown in MDX. This replaces the `extendPlugins: 'defaults'` option.
352
+
353
+ ### Patch Changes
354
+
355
+ - Updated dependencies [[`e2019be6f`](https://github.com/withastro/astro/commit/e2019be6ffa46fa33d92cfd346f9ecbe51bb7144), [`a9c292026`](https://github.com/withastro/astro/commit/a9c2920264e36cc5dc05f4adc1912187979edb0d)]:
356
+ - @astrojs/markdown-remark@2.0.0-beta.0
357
+
358
+ </details>
359
+
360
+ ## 0.14.0
361
+
362
+ ### Minor Changes
363
+
364
+ - [#5654](https://github.com/withastro/astro/pull/5654) [`2c65b433b`](https://github.com/withastro/astro/commit/2c65b433bf840a1bb93b0a1947df5949e33512ff) Thanks [@delucis](https://github.com/delucis)! - Run heading ID injection after user plugins
365
+
366
+ ⚠️ BREAKING CHANGE ⚠️
367
+
368
+ If you are using a rehype plugin that depends on heading IDs injected by Astro, the IDs will no longer be available when your plugin runs by default.
369
+
370
+ To inject IDs before your plugins run, import and add the `rehypeHeadingIds` plugin to your `rehypePlugins` config:
371
+
372
+ ```diff
373
+ // astro.config.mjs
374
+ + import { rehypeHeadingIds } from '@astrojs/markdown-remark';
375
+ import mdx from '@astrojs/mdx';
376
+
377
+ export default {
378
+ integrations: [mdx()],
379
+ markdown: {
380
+ rehypePlugins: [
381
+ + rehypeHeadingIds,
382
+ otherPluginThatReliesOnHeadingIDs,
383
+ ],
384
+ },
385
+ }
386
+ ```
387
+
388
+ ### Patch Changes
389
+
390
+ - [#5667](https://github.com/withastro/astro/pull/5667) [`a5ba4af79`](https://github.com/withastro/astro/commit/a5ba4af79930145f4edf66d45cd40ddad045cc86) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Chore: remove verbose "Now interiting Markdown plugins..." logs
391
+
392
+ - [#5648](https://github.com/withastro/astro/pull/5648) [`853081d1c`](https://github.com/withastro/astro/commit/853081d1c857d8ad8a9634c37ed8fd123d32d241) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Prevent relative image paths in `src/content/`
393
+
394
+ - Updated dependencies [[`853081d1c`](https://github.com/withastro/astro/commit/853081d1c857d8ad8a9634c37ed8fd123d32d241), [`2c65b433b`](https://github.com/withastro/astro/commit/2c65b433bf840a1bb93b0a1947df5949e33512ff)]:
395
+ - @astrojs/markdown-remark@1.2.0
396
+
397
+ ## 0.13.0
398
+
399
+ ### Minor Changes
400
+
401
+ - [#5291](https://github.com/withastro/astro/pull/5291) [`5ec0f6ed5`](https://github.com/withastro/astro/commit/5ec0f6ed55b0a14a9663a90a03428345baf126bd) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Introduce Content Collections experimental API
402
+ - Organize your Markdown and MDX content into easy-to-manage collections.
403
+ - Add type safety to your frontmatter with schemas.
404
+ - Generate landing pages, static routes, and SSR endpoints from your content using the collection query APIs.
405
+
406
+ ## 0.12.2
407
+
408
+ ### Patch Changes
409
+
410
+ - [#5586](https://github.com/withastro/astro/pull/5586) [`f4ff69a3c`](https://github.com/withastro/astro/commit/f4ff69a3cd874c8804c6d01c7cbbaed8a8e90be7) Thanks [@delucis](https://github.com/delucis)! - Fix link in MDX integration README
411
+
412
+ - [#5570](https://github.com/withastro/astro/pull/5570) [`3f811eb68`](https://github.com/withastro/astro/commit/3f811eb682d55bd1f908f9b4bc3b795d2859d713) Thanks [@sarah11918](https://github.com/sarah11918)! - Revise README
413
+
414
+ ## 0.12.1
415
+
416
+ ### Patch Changes
417
+
418
+ - [#5522](https://github.com/withastro/astro/pull/5522) [`efc4363e0`](https://github.com/withastro/astro/commit/efc4363e0baf7f92900e20af339811bb3df42b0e) Thanks [@delucis](https://github.com/delucis)! - Support use of `<Fragment>` in MDX files rendered with `<Content />` component
419
+
420
+ ## 0.12.0
421
+
422
+ ### Minor Changes
423
+
424
+ - [#5427](https://github.com/withastro/astro/pull/5427) [`2a1c085b1`](https://github.com/withastro/astro/commit/2a1c085b199f24e34424ec8c19041c03602c53c5) Thanks [@backflip](https://github.com/backflip)! - Uses remark-rehype options from astro.config.mjs
425
+
426
+ ### Patch Changes
427
+
428
+ - [#5448](https://github.com/withastro/astro/pull/5448) [`ef2ffc7ae`](https://github.com/withastro/astro/commit/ef2ffc7ae9ff554860238ecd2fb3bf6d82b5801b) Thanks [@delucis](https://github.com/delucis)! - Fix broken link in README
429
+
430
+ ## 0.11.6
431
+
432
+ ### Patch Changes
433
+
434
+ - [#5335](https://github.com/withastro/astro/pull/5335) [`dca762cf7`](https://github.com/withastro/astro/commit/dca762cf734a657d8f126fd6958892b6163a4f67) Thanks [@bluwy](https://github.com/bluwy)! - Preserve code element node `data.meta` in `properties.metastring` for rehype syntax highlighters, like `rehype-pretty-code``
435
+
436
+ ## 0.11.5
437
+
438
+ ### Patch Changes
439
+
440
+ - [#5146](https://github.com/withastro/astro/pull/5146) [`308e565ad`](https://github.com/withastro/astro/commit/308e565ad39957e3353d72ca5d3bbce1a1b45008) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Support recmaPlugins config option
441
+
442
+ ## 0.11.4
443
+
444
+ ### Patch Changes
445
+
446
+ - [#4953](https://github.com/withastro/astro/pull/4953) [`a59731995`](https://github.com/withastro/astro/commit/a59731995b93ae69c21dc3adc5c8b482b466d12e) Thanks [@bluwy](https://github.com/bluwy)! - Log markdown hints with console.info
447
+
448
+ ## 0.11.3
449
+
450
+ ### Patch Changes
451
+
452
+ - [#4842](https://github.com/withastro/astro/pull/4842) [`812658ad2`](https://github.com/withastro/astro/commit/812658ad2ab3732a99e35c4fd903e302e723db46) Thanks [@bluwy](https://github.com/bluwy)! - Add missing dependencies, support strict dependency installation (e.g. pnpm)
453
+
454
+ ## 0.11.2
455
+
456
+ ### Patch Changes
457
+
458
+ - [#4700](https://github.com/withastro/astro/pull/4700) [`e5f71142e`](https://github.com/withastro/astro/commit/e5f71142eb62bd72456e889dad5774347c3753f2) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Document MDXLayoutProps utility type
459
+
460
+ - [#4858](https://github.com/withastro/astro/pull/4858) [`58a2dca22`](https://github.com/withastro/astro/commit/58a2dca2286cb14f6211cf51267c02447e78433a) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Correctly parse import.meta.env in MDX files
461
+
462
+ ## 0.11.1
463
+
464
+ ### Patch Changes
465
+
466
+ - [#4588](https://github.com/withastro/astro/pull/4588) [`db38f61b2`](https://github.com/withastro/astro/commit/db38f61b2b2dc55f03b28797d19b163b1940f1c8) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix: Add GFM and Smartypants to MDX by default
467
+
468
+ ## 0.11.0
469
+
470
+ ### Minor Changes
471
+
472
+ - [#4504](https://github.com/withastro/astro/pull/4504) [`8f8dff4d3`](https://github.com/withastro/astro/commit/8f8dff4d339a3a12ee155d81a97132032ef3b622) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Introduce new `extendPlugins` configuration option. This defaults to inheriting all remark and rehype plugins from your `markdown` config, with options to use either Astro's defaults or no inheritance at all.
473
+
474
+ ## 0.10.3
475
+
476
+ ### Patch Changes
477
+
478
+ - [#4519](https://github.com/withastro/astro/pull/4519) [`a2e8e76c3`](https://github.com/withastro/astro/commit/a2e8e76c303e8d6f39c24c122905a10f06907997) Thanks [@JuanM04](https://github.com/JuanM04)! - Upgraded Shiki to v0.11.1
479
+
480
+ - [#4530](https://github.com/withastro/astro/pull/4530) [`8504cd79b`](https://github.com/withastro/astro/commit/8504cd79b708e0d3bf1a2bb4ff9b86936bdd692b) Thanks [@kylebutts](https://github.com/kylebutts)! - Add custom components to README
481
+
482
+ ## 0.10.2
483
+
484
+ ### Patch Changes
485
+
486
+ - [#4423](https://github.com/withastro/astro/pull/4423) [`d4cd7a59f`](https://github.com/withastro/astro/commit/d4cd7a59fd38d411c442a818cfaab40f74106628) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Update Markdown type signature to match new markdown plugin,and update top-level layout props for better alignment
487
+
488
+ ## 0.10.2-next.0
489
+
490
+ ### Patch Changes
491
+
492
+ - [#4423](https://github.com/withastro/astro/pull/4423) [`d4cd7a59f`](https://github.com/withastro/astro/commit/d4cd7a59fd38d411c442a818cfaab40f74106628) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Update Markdown type signature to match new markdown plugin,and update top-level layout props for better alignment
493
+
494
+ ## 0.10.1
495
+
496
+ ### Patch Changes
497
+
498
+ - [#4443](https://github.com/withastro/astro/pull/4443) [`adb207979`](https://github.com/withastro/astro/commit/adb20797962c280d4d38f335f577fd52a1b48d4b) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix MDX style imports when layout is not applied
499
+
500
+ * [#4428](https://github.com/withastro/astro/pull/4428) [`a2414bf59`](https://github.com/withastro/astro/commit/a2414bf59e2e2cd633aece68e724401c4ad281b9) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix dev server reload performance when globbing from an MDX layout
501
+
502
+ ## 0.10.0
503
+
504
+ ### Minor Changes
505
+
506
+ - [#4292](https://github.com/withastro/astro/pull/4292) [`f1a52c18a`](https://github.com/withastro/astro/commit/f1a52c18afe66e6d310743ae6884be76f69be265) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Switch from Shiki Twoslash to Astro's Shiki Markdown highlighter
507
+
508
+ ## 0.9.0
509
+
510
+ ### Minor Changes
511
+
512
+ - [#4268](https://github.com/withastro/astro/pull/4268) [`f7afdb889`](https://github.com/withastro/astro/commit/f7afdb889fe4e97177958c8ec92f80c5f6e5cb51) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Align MD with MDX on layout props and "glob" import results:
513
+ - Add `Content` to MDX
514
+ - Add `file` and `url` to MDX frontmatter (layout import only)
515
+ - Update glob types to reflect differences (lack of `rawContent` and `compiledContent`)
516
+
517
+ ### Patch Changes
518
+
519
+ - [#4272](https://github.com/withastro/astro/pull/4272) [`24d2f7a6e`](https://github.com/withastro/astro/commit/24d2f7a6e6700c10c863f826f37bb653d70e3a83) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Properly handle hydration for namespaced components
520
+
521
+ ## 0.8.3
522
+
523
+ ### Patch Changes
524
+
525
+ - [#4248](https://github.com/withastro/astro/pull/4248) [`869d00935`](https://github.com/withastro/astro/commit/869d0093596b709cfcc1a1a95ee631b48d6d1c26) Thanks [@svemat01](https://github.com/svemat01)! - Load builtin rehype plugins before user plugins instead of after
526
+
527
+ * [#4255](https://github.com/withastro/astro/pull/4255) [`411612808`](https://github.com/withastro/astro/commit/4116128082121ee276d51cb245bf8095be4728a1) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Pass injected frontmatter from remark and rehype plugins to layouts
528
+
529
+ * Updated dependencies [[`1f0dd31d9`](https://github.com/withastro/astro/commit/1f0dd31d9239b5e3dca99c88d021e7a9a3e2054d)]:
530
+ - @astrojs/prism@1.0.1
531
+
532
+ ## 0.8.2
533
+
534
+ ### Patch Changes
535
+
536
+ - [#4237](https://github.com/withastro/astro/pull/4237) [`9d5ab5508`](https://github.com/withastro/astro/commit/9d5ab55086964fbede17da3d78c209c6d8d13711) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Update "Astro.props.content" -> "Astro.props.frontmatter" in README
537
+
538
+ ## 0.8.1
539
+
540
+ ### Patch Changes
541
+
542
+ - Updated dependencies [[`04ad44563`](https://github.com/withastro/astro/commit/04ad445632c67bdd60c1704e1e0dcbcaa27b9308)]:
543
+ - @astrojs/prism@1.0.0
544
+
545
+ ## 0.8.0
546
+
547
+ ### Minor Changes
548
+
549
+ - [#4204](https://github.com/withastro/astro/pull/4204) [`4c2ca5352`](https://github.com/withastro/astro/commit/4c2ca5352d0c4119ed2a9e5e0b78ce71eb1b414a) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Remove `frontmatterOptions` from MDX config
550
+
551
+ ### Patch Changes
552
+
553
+ - [#4205](https://github.com/withastro/astro/pull/4205) [`6c9736cbc`](https://github.com/withastro/astro/commit/6c9736cbc90162f1de3ebccd7cfe98332749b639) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Add frontmatter injection instructions to README
554
+
555
+ ## 0.7.0
556
+
557
+ ### Minor Changes
558
+
559
+ - [#4176](https://github.com/withastro/astro/pull/4176) [`2675b8633`](https://github.com/withastro/astro/commit/2675b8633c5d5c45b237ec87940d5eaf1bfb1b4b) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Support frontmatter injection for MD and MDX using remark and rehype plugins
560
+
561
+ ### Patch Changes
562
+
563
+ - [#4181](https://github.com/withastro/astro/pull/4181) [`77cede720`](https://github.com/withastro/astro/commit/77cede720b09bce34f29c3d2d8b505311ce876b1) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Make collect-headings rehype plugin non-overridable
564
+
565
+ * [#4174](https://github.com/withastro/astro/pull/4174) [`8eb3a8c6d`](https://github.com/withastro/astro/commit/8eb3a8c6d9554707963c3a3bc36ed8b68d3cf0fb) Thanks [@matthewp](https://github.com/matthewp)! - Allows using React with automatic imports alongside MDX
566
+
567
+ - [#4145](https://github.com/withastro/astro/pull/4145) [`c7efcf57e`](https://github.com/withastro/astro/commit/c7efcf57e00a0fcde3bc9f813e3cc59902bd484c) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Fix a missing newline bug when `layout` was set.
568
+
569
+ ## 0.6.0
570
+
571
+ ### Minor Changes
572
+
573
+ - [#4134](https://github.com/withastro/astro/pull/4134) [`2968ba2b6`](https://github.com/withastro/astro/commit/2968ba2b6f00775b6e9872681b390cb466fdbfa2) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Add `headings` and `frontmatter` properties to layout props
574
+
575
+ ## 0.5.0
576
+
577
+ ### Minor Changes
578
+
579
+ - [#4095](https://github.com/withastro/astro/pull/4095) [`40ef43a59`](https://github.com/withastro/astro/commit/40ef43a59b08a1a8fbcd9f4a53745a9636a4fbb9) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Add IDs to MDX headings and expose via getHeadings() export
580
+
581
+ * [#4114](https://github.com/withastro/astro/pull/4114) [`64432bcb8`](https://github.com/withastro/astro/commit/64432bcb873efd0e4297c00fc9583a1fe516dfe7) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Refactor `@astrojs/mdx` and `@astrojs/markdown-remark` to use `@astrojs/prism` instead of duplicating the code
582
+
583
+ ### Patch Changes
584
+
585
+ - [#4112](https://github.com/withastro/astro/pull/4112) [`e33fc9bc4`](https://github.com/withastro/astro/commit/e33fc9bc46ff0a30013deb6dc76e545e70cc3a3e) Thanks [@matthewp](https://github.com/matthewp)! - Fix MDX working with a ts config file
586
+
587
+ * [#4049](https://github.com/withastro/astro/pull/4049) [`b60cc0538`](https://github.com/withastro/astro/commit/b60cc0538bc5c68dd411117780d20d892530789d) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Improve `injectScript` handling for non-Astro pages
588
+
589
+ * Updated dependencies [[`64432bcb8`](https://github.com/withastro/astro/commit/64432bcb873efd0e4297c00fc9583a1fe516dfe7)]:
590
+ - @astrojs/prism@0.7.0
591
+
592
+ ## 0.4.0
593
+
594
+ ### Minor Changes
595
+
596
+ - [#4088](https://github.com/withastro/astro/pull/4088) [`1743fe140`](https://github.com/withastro/astro/commit/1743fe140eb58d60e26cbd11a066bb60de046e0c) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Support "layout" frontmatter property
597
+
598
+ ## 0.3.1
599
+
600
+ ### Patch Changes
601
+
602
+ - [#4076](https://github.com/withastro/astro/pull/4076) [`6120a71e5`](https://github.com/withastro/astro/commit/6120a71e5425ad55a17ddac800d64a3f50273bce) Thanks [@matthewp](https://github.com/matthewp)! - Ensure file and url are always present in MDX for Astro.glob
603
+
604
+ ## 0.3.0
605
+
606
+ ### Minor Changes
607
+
608
+ - [#3977](https://github.com/withastro/astro/pull/3977) [`19433eb4a`](https://github.com/withastro/astro/commit/19433eb4a4441522f68492ca914ad2ab4f061343) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Add remarkPlugins and rehypePlugins to config, with the same default plugins as our standard Markdown parser
609
+
610
+ * [#4002](https://github.com/withastro/astro/pull/4002) [`3b8a74452`](https://github.com/withastro/astro/commit/3b8a7445247221100462ba035f6778b43ea180e7) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Support Prism and Shiki syntax highlighting based on project config
611
+
612
+ - [#3995](https://github.com/withastro/astro/pull/3995) [`b2b367c96`](https://github.com/withastro/astro/commit/b2b367c969493aaf21c974064beb241d05228066) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Support YAML frontmatter in MDX files
613
+
614
+ ### Patch Changes
615
+
616
+ - [#4050](https://github.com/withastro/astro/pull/4050) [`9ab66c4ba`](https://github.com/withastro/astro/commit/9ab66c4ba9bf2250990114c76b792f26d0694365) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Add support for injected "page-ssr" scripts
617
+
618
+ * [#3981](https://github.com/withastro/astro/pull/3981) [`61fec6304`](https://github.com/withastro/astro/commit/61fec63044e1585348e8405bee6fdf4dec635efa) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Include page url in MDX glob result
619
+
620
+ ## 0.2.1
621
+
622
+ ### Patch Changes
623
+
624
+ - [#3937](https://github.com/withastro/astro/pull/3937) [`31f9c0bf0`](https://github.com/withastro/astro/commit/31f9c0bf029ffa4b470e620f2c32e1370643e81e) Thanks [@delucis](https://github.com/delucis)! - Roll back supported Node engines
625
+
626
+ ## 0.2.0
627
+
628
+ ### Minor Changes
629
+
630
+ - [#3914](https://github.com/withastro/astro/pull/3914) [`b48767985`](https://github.com/withastro/astro/commit/b48767985359bd359df8071324952ea5f2bc0d86) Thanks [@ran-dall](https://github.com/ran-dall)! - Rollback supported `node@16` version. Minimum versions are now `node@14.20.0` or `node@16.14.0`.
631
+
632
+ ## 0.1.1
633
+
634
+ ### Patch Changes
635
+
636
+ - [#3885](https://github.com/withastro/astro/pull/3885) [`bf5d1cc1e`](https://github.com/withastro/astro/commit/bf5d1cc1e71da38a14658c615e9481f2145cc6e7) Thanks [@delucis](https://github.com/delucis)! - Integration README fixes
637
+
638
+ ## 0.1.0
639
+
640
+ ### Minor Changes
641
+
642
+ - [#3871](https://github.com/withastro/astro/pull/3871) [`1cc5b7890`](https://github.com/withastro/astro/commit/1cc5b78905633608e5b07ad291f916f54e67feb1) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Update supported `node` versions. Minimum versions are now `node@14.20.0` or `node@16.16.0`.
643
+
644
+ ## 0.0.3
645
+
646
+ ### Patch Changes
647
+
648
+ - [#3854](https://github.com/withastro/astro/pull/3854) [`b012ee55`](https://github.com/withastro/astro/commit/b012ee55b107dea0730286263b27d83e530fad5d) Thanks [@bholmesdev](https://github.com/bholmesdev)! - [astro add] Support adapters and third party packages
649
+
650
+ ## 0.0.2
651
+
652
+ ### Patch Changes
653
+
654
+ - [#3706](https://github.com/withastro/astro/pull/3706) [`032ad1c0`](https://github.com/withastro/astro/commit/032ad1c047a62dd663067cc562537d16f2872aa7) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Initial release! 🎉