-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: compilers #882
fix: compilers #882
Conversation
if (complexEmbed) return `<Embed ${{...node.data?.hProperties}} />`; | ||
|
||
if (complexEmbed) { | ||
const attributes = Object.keys(node.data?.hProperties).map(key => `${key}="${node.data?.hProperties[key]}"`).join(' ') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could probably utility-ize this, i'll add a TODO 😂
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this interpolation go crazy
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
idk how to test this but seems reasonable to me!
This PR was released!🚀 Changes included in v6.75.0-beta.37 |
🧰 Changes
needed to adjust the output for the image & embed & html block compilers
🧬 QA & Testing