Conversation
kevinports
approved these changes
Mar 9, 2026
rafegoldberg
pushed a commit
that referenced
this pull request
Mar 16, 2026
## Version 13.6.0 ### ✨ New & Improved * correctly render block level elements in callout ([#1362](#1362)) ([32040cb](32040cb)) ### 🛠 Fixes & Updates * **mdxish-editor:** built in anchor component not deserializing to to a link in mdxish editor ([#1361](#1361)) ([30e037d](30e037d)) * **mdxish:** callout end tag rendering ([#1373](#1373)) ([cad7594](cad7594)) * **mdxish:** combine code tabs if separated by CLRF token \r\n ([#1372](#1372)) ([2d8d267](2d8d267)) * **mdxish:** Curly braces on separate lines cause render failure on MDXish ([#1364](#1364)) ([d85e106](d85e106)) * **mdxished:** Preserve embed type and dimensions when copy/pasting <Embed> blocks ([#1369](#1369)) ([5af9623](5af9623)) ### 📘 Tests & Docs * **xish:** add CLAUDE.md + processor flow overview docs ([#1370](#1370)) ([b8d9e4c](b8d9e4c)) <!--SKIP CI-->
Contributor
This PR was released!🚀 Changes included in v13.6.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

🧰 Changes
Issue
When users copy/paste an embed block like , the typeOfEmbed attribute was being dropped during the JSX-to-MDAST transformation. This caused all pasted embeds to default to iframe type regardless of their original type
Root cause
The transformEmbed function in
mdxish-jsx-to-mdast.tshadtypeOfEmbeddefined in its EmbedAttrs interface but never extracted or included it in hProperties. Similarly, height and width attributes were not handled.Fix
🧬 QA & Testing