fix: image not being rendered in approach.mdx in uli-website #363
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.
An image is not being rendered in a blog in uli-webiste.
The blog is titled
Thinking about Feminist Approaches to Technology
and mdx file can be found insideuli-website/src/pages/blog/approach.mdx
.In this mdx file earlier, Tarunima was rendering the image like this
In my view, the image is not being rendered because a GitHub link to the image is attached in the image src. This won't work because the image is not hosted on a CDN.
Thats why I added the
OGBV_stakeholders_2.png
image to thestatic
folder. And then I am trying to display the image in the blog like thisThis still does not show the image and just the
alt
text can be seen ->OGBV Stakeholders
.I also tried displaying the image using HTML code like this
This as well, isn't showing the image and just the
alt
text can be seen.I also removed my
.chache
folder and re-ran the development server.@dennyabrain if possible, whenever you get time, can you pull this at your end and test it out? what am I doing wrong?