-
Notifications
You must be signed in to change notification settings - Fork 9
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
Correctly handle display
usage in cells
#37
Comments
From #44: I was copying quarto tests to use our native runner, and this failed: ---
title: Julia Subfig Test
engine: julia
---
```{julia}
Pkg.activate(temp = true)
Pkg.add(name = "Plots", version = "1.40.1")
```
## Julia Crossref Figure
```{julia}
#| label: fig-plots
#| fig-cap: "Plots"
#| fig-subcap:
#| - "Plot 1"
#| - "Plot 2"
#| layout-ncol: 2
using Plots
plot([1,23,2,4]) |> display
plot([8,65,23,90]) |> display
```
See @fig-plots for examples. In particular, @fig-plots-2. So they are using |
Probably just hooking into |
can we currently add arbitrarily many outputs of a given MIME type to the ipynb we output?
Yeah either that or with a special type |
Yes, that's an option, though if a user evals a single cell into a REPL they'll not have that type defined, which would probably be annoying. Just following what IJulia does is probably the most straightforward thing to do currently. |
No description provided.
The text was updated successfully, but these errors were encountered: