-
Notifications
You must be signed in to change notification settings - Fork 234
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
Use <figure>s for images inserted from markdown #164
Conversation
This means they will be inserted as `atomic` blocks. Closes sstur#147
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.
I don't know how much I love the idea of:
- Using a wrapping
<figure>
- Doing it in the markdown parser (as opposed to the draft-js content generator)
I feel like there's a more optimal solution, but.. since this is a working solution to a problem that has been around for a while, I think we should go ahead and land this (behind an option flag) and possibly come up with a more optimal solution another day.
blocks, | ||
}).toEqual({ | ||
entityMap: { | ||
// This is necessary due to flow not supporting non-string literal property keys |
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.
Oh, I think the trick here that I used in the past is:
{ [0]: "foo" }
because IIRC Flow is fine when the number literal is in a computed property.
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.
I just copied that from the old tests 😉
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.
Oops, my bad. You're right!
I will put this behind an option 👍 |
Hmm, it seems like the Thanks for the quick review!! |
const alt = 'The Google Logo'; | ||
let markdown = ``; | ||
let contentState = stateFromMarkdown(markdown, { | ||
parserOptions: {atomicImages: true}, |
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.
@mxstbr: I added this here. Unless you have an objection to this approach, I'll go ahead and land this when the CI passes and I'll cut a release.
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.
Perfect 💯
This means they will be inserted as
atomic
blocks byimport-element
, making them work out of the box with thedraft-js-image-plugin
🎉Closes #147