You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can get the images to display inline if I add style="display:inline;" to the image elements, but they get displayed without any padding. The current solution I am using to display the images the way I want to is to put them inside a single-row <table> element, each image surrounded by a <td> element.
It would be much better if the images were displayed inline by default, like they are in GitHub READMEs. This would make it easier to directly copy the badges from a GitHub README into a project .mdx file.
The text was updated successfully, but these errors were encountered:
I'm not sure how to resolve this, as it shouldn't interfere with how other images are rendered, but curious to see what solution comes up!
Just an idea, but maybe the best way to make sure of this is to manually update the .mdx file for each project that uses images. The following script does not return too many projects (29):
The current behavior is that images are displayed on separate lines, using both the markdown syntax and html.
Markdown:
HTML:
Here's what it looks like:
What I want it to look like:
I can get the images to display inline if I add
style="display:inline;"
to the image elements, but they get displayed without any padding. The current solution I am using to display the images the way I want to is to put them inside a single-row<table>
element, each image surrounded by a<td>
element.It would be much better if the images were displayed inline by default, like they are in GitHub READMEs. This would make it easier to directly copy the badges from a GitHub README into a project .mdx file.
The text was updated successfully, but these errors were encountered: