Skip to content
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

display(Markdown(f'![]({relpth})') - works in Jupyter Lab (3.0.14) but not Voila (0.2.9) #904

Closed
jgunstone opened this issue Jun 15, 2021 · 1 comment · Fixed by #846
Closed

Comments

@jgunstone
Copy link

jgunstone commented Jun 15, 2021

image

relevant code:

from IPython.display import display, Markdown
display(Markdown(f'![]({relpth})')

perhaps related to?
#659
#796

@jgunstone jgunstone changed the title display(Image(fpth)) - works in Jupyter Lab (3.0.14) but not Voila (0.2.9) display(Markdown(f'![]({relpth})') - works in Jupyter Lab (3.0.14) but not Voila (0.2.9) Jun 15, 2021
@jgunstone
Copy link
Author

think i found the cause of the issue -

image files named with a capital ".PNG" extension don't render in Voila, but do still render in Jupyter Lab

i.e.

from IPython.display import display, Markdown
display(Markdown(f'![](img.png)')   # works
display(Markdown(f'![](img.PNG)')   # doesn't work

i'll leave the issue open for now as this is unexpected behaviour

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant