74528a1973
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2 KiB
2 KiB
@astrojs/markdown-component
1.0.1
Patch Changes
1.0.0
Major Changes
-
04ad44563
- > Astro v1.0 is out! Read the official announcement post.No breaking changes. This package is now officially stable and compatible with
astro@1.0.0
!
0.2.1
Patch Changes
- #4085
c15cb3663
Thanks @Princesseuh! - Fix TypeScript error when importing the component
0.2.0
Minor Changes
-
#4016
00fab4ce1
Thanks @bholmesdev! - 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.
// https://astro.build/config export default defineConfig({ legacy: { astroFlavoredMarkdown: true, }, });