Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ using Test
using Coverage
using DifferentiationInterface
using Plots
using CairoMakie
import CairoMakie

Base.showable(::MIME"image/png", ::Plots.Plot) = false
CairoMakie.activate!(; type="svg")
Base.showable(::MIME"image/png", ::CairoMakie.Makie.Figure) = false

# Make extension modules available in Main so that @docs blocks can resolve
# qualified bindings like CTFlowsSciMLIntegrator.SciMLIntegrationResult.
Expand Down
1 change: 0 additions & 1 deletion docs/src/guide/plotting.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ CurrentModule = CTBase

```@setup plot
using Plots
Base.showable(::MIME"image/png", ::Plots.Plot) = false
```

The [`CTBase.Plotting`](@ref) submodule is a generic, domain-free plotting engine.
Expand Down
Loading