Call showable in correct world age#187
Merged
Merged
Conversation
Owner
|
Thanks |
Owner
Contributor
Author
|
Thanks! I was about to push the following regression test when I noticed that you had already merged and released the PR 🙂 Maybe it could still be useful? diff --git a/test/runtests.jl b/test/runtests.jl
index 9d34427..1b10962 100644
--- a/test/runtests.jl
+++ b/test/runtests.jl
@@ -790,6 +790,13 @@ end end
Base.show(io::IO, mime::MIME"image/svg+xml", ::SVG) = print(io, "SVG")
SVG()
#-
+ struct SVGOnly end
+ Base.showable(::MIME, ::SVGOnly) = false
+ Base.showable(::MIME"image/svg+xml", ::SVGOnly) = true
+ Base.show(::IO, ::MIME, ::SVGOnly) = error("only SVG output supported")
+ Base.show(io::IO, ::MIME"image/svg+xml", ::SVGOnly) = print(io, "SVGOnly")
+ SVGOnly()
+ #-
struct MD end
Base.show(io::IO, mime::MIME"text/markdown", ::MD) = print(io, "# " * "MD")
Base.show(io::IO, mime::MIME"text/html", ::MD) = |
Owner
|
Yea, that would be great. |
devmotion
added a commit
to devmotion/Literate.jl
that referenced
this pull request
Feb 10, 2022
fredrikekre
pushed a commit
that referenced
this pull request
Feb 10, 2022
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
It took me multiple days to figure out why executing some Markdown blocks that return CairoMakie figures errored even though everything worked when copy-pasted to the REPL. A much much simpler example that demonstrates the problem (requires installation of Literate and CairoMakie):
As I realized after a long time, the problem is that the
showablechecks in src/Literate.jl run in a different world age than the actualshowinvocations. Callingshowablealso withinvokelatestfixes the issue.