We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02407fa commit 8f2ad22Copy full SHA for 8f2ad22
docs/demos/config.json
@@ -1,4 +1,7 @@
1
{
2
"title": "Examples",
3
- "theme": "grid"
+ "theme": "grid",
4
+ "properties":{
5
+ "notebook": "false"
6
+ }
7
}
docs/make.jl
@@ -1,5 +1,9 @@
using Documenter, DemoCards
using ImageFiltering
+# loading Plots before generating demos (might be helpful to avoid segfaults)
+using Plots
+ENV["GKSwstype"] = "nul" # needed for the GR backend on headless servers
+gr()
8
demos, demos_cb, demos_assets = makedemos("demos")
9
0 commit comments