EnterpriseDB / docs

EDB Docs
https://www.enterprisedb.com/docs/
Apache License 2.0
44 stars 217 forks source link

Preserve style attribute on HTML image markup within MDX #5799

Closed josh-heyer closed 1 week ago

josh-heyer commented 1 week ago

What Changed?

This allows for the occasional text-wrapped image by embedding it via

<img src='...' style='float:right;' />

Note that this is implemented by a plugin that "wraps" the existing gatsby-remark-images plugin: first pass stashes the style before it is lost, second pass merges it into the generated image wrapper.

Took this opportunity to clean up the styling for that plugin a bit too, removing the blurred background placeholder in favor of just reserving space for the image until it loads.