summaryrefslogtreecommitdiff
path: root/.changeset/two-hounds-sort.md
blob: b6be5ea04eb69b8b0077e65add5ec3caefde34c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
'astro': minor
'@astrojs/markdown-component': minor
'@astrojs/markdown-remark': minor
---

The use of components and JSX expressions in Markdown are no longer supported by default.

For long term support, migrate to the `@astrojs/mdx` integration for MDX support (including `.mdx` pages!).

Not ready to migrate to MDX? Add the legacy flag to your Astro config to re-enable the previous Markdown support.

```js
// https://astro.build/config
export default defineConfig({
	legacy: {
		astroFlavoredMarkdown: true,
	}
});
```