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
In attempting to debug #1587, I created a simple demo:
# Main![](2024-09-05 17-39-05.mp4)
I then realised that the link reference contains a space, which is prohibited by the CommonMark spec (and is generally link-like behaviour). So, I updated the example to use autolink syntax which is a suggested mechanism of escaping whitespace:
# Main![](<2024-09-05 17-39-05.mp4>)
I could also have written
![](2024-09-05%2017-39-05.mp4)
but the bracket syntax is more readable (to me).
This failed to load the image. It looks like we're just appending the urlSource to the path for local files rather than URL decoding the name.
The text was updated successfully, but these errors were encountered:
In attempting to debug #1587, I created a simple demo:
I then realised that the link reference contains a space, which is prohibited by the CommonMark spec (and is generally link-like behaviour). So, I updated the example to use autolink syntax which is a suggested mechanism of escaping whitespace:
I could also have written
but the bracket syntax is more readable (to me).
This failed to load the image. It looks like we're just appending the
urlSource
to the path for local files rather than URL decoding the name.The text was updated successfully, but these errors were encountered: