diff --git a/.changeset/wicked-bikes-raise.md b/.changeset/wicked-bikes-raise.md deleted file mode 100644 index 4cafc0a..0000000 --- a/.changeset/wicked-bikes-raise.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -"@studiocms/markdown-remark": minor ---- - -Introduce custom User-Defined component handling. - -This update includes significant enhancements to the Markdown Remark processor Astro Integration, allowing for more flexible and powerful Markdown rendering with custom components. - -### New Features: - -- Added custom components support in the Markdown Remark processor Astro Integration. -- Introduced utility functions in `utils.ts` for component proxy creation, indentation handling, dedenting strings, and merging records. -- Moved zod schema to separate `schema.ts` file. - -### Integration Updates: - -- Enhanced Astro integration to support custom components configuration via `astro.config.mjs`. -- Updated `markdown.ts` to include custom components during Markdown rendering. -- Extended `index.ts` to utilize the new schema and utilities. - -### Documentation: - -- Updated `README.md` with instructions for setting up custom components in Astro integration. - -### Dependencies: - -- Added `entities` and `ultrahtml` as new dependencies. \ No newline at end of file diff --git a/packages/markdown-remark/CHANGELOG.md b/packages/markdown-remark/CHANGELOG.md index 3304df9..176aebf 100644 --- a/packages/markdown-remark/CHANGELOG.md +++ b/packages/markdown-remark/CHANGELOG.md @@ -1,5 +1,33 @@ # @studiocms/markdown-remark +## 0.2.0 + +### Minor Changes + +- [#8](https://github.com/withstudiocms/markdown-remark/pull/8) [`6b0053b`](https://github.com/withstudiocms/markdown-remark/commit/6b0053b37ec58e56bd757d68f1d4a27f78b233b7) Thanks [@Adammatthiesen](https://github.com/Adammatthiesen)! - Introduce custom User-Defined component handling. + + This update includes significant enhancements to the Markdown Remark processor Astro Integration, allowing for more flexible and powerful Markdown rendering with custom components. + + ### New Features: + + - Added custom components support in the Markdown Remark processor Astro Integration. + - Introduced utility functions in `utils.ts` for component proxy creation, indentation handling, dedenting strings, and merging records. + - Moved zod schema to separate `schema.ts` file. + + ### Integration Updates: + + - Enhanced Astro integration to support custom components configuration via `astro.config.mjs`. + - Updated `markdown.ts` to include custom components during Markdown rendering. + - Extended `index.ts` to utilize the new schema and utilities. + + ### Documentation: + + - Updated `README.md` with instructions for setting up custom components in Astro integration. + + ### Dependencies: + + - Added `entities` and `ultrahtml` as new dependencies. + ## 0.1.1 ### Patch Changes diff --git a/packages/markdown-remark/package.json b/packages/markdown-remark/package.json index 6cd3fda..5cd37f0 100644 --- a/packages/markdown-remark/package.json +++ b/packages/markdown-remark/package.json @@ -1,6 +1,6 @@ { "name": "@studiocms/markdown-remark", - "version": "0.1.1", + "version": "0.2.0", "type": "module", "author": "studiocms", "license": "MIT",