I have an animated gif that I'd like to display in IJulia. I plan to serve it using this method:
function Base.writemime(io::IO, ::MIME"text/html", agif::AnimatedGif) write(io, "<img src=\"$(agif.filename)\" />") end This works as expected if the file name is relative and inside the working directory, but if it's an absolute path or a path outside the working directory it doesn't display. Is there a way to show the file without copying it to the working directory?