From a235367f0b2413ec6aa4c530cbfc4259be321d30 Mon Sep 17 00:00:00 2001 From: t-bltg Date: Mon, 4 Apr 2022 18:01:22 +0200 Subject: [PATCH] update --- docs/gallery/gaston/index.md | 2 +- docs/gallery/gr/index.md | 2 +- docs/gallery/inspectdr/index.md | 2 +- docs/gallery/pgfplotsx/index.md | 2 +- docs/gallery/plotlyjs/index.md | 2 +- docs/gallery/pyplot/index.md | 2 +- docs/gallery/unicodeplots/index.md | 2 +- docs/make.jl | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/gallery/gaston/index.md b/docs/gallery/gaston/index.md index 206f7609215..53eb141d71f 100644 --- a/docs/gallery/gaston/index.md +++ b/docs/gallery/gaston/index.md @@ -1,6 +1,6 @@ # Gaston -To switch to Gaston backend, you can use: +To switch to the `Gaston` backend, you can use: ```julia using Plots diff --git a/docs/gallery/gr/index.md b/docs/gallery/gr/index.md index 1340146b5b1..e1a44c5b5b3 100644 --- a/docs/gallery/gr/index.md +++ b/docs/gallery/gr/index.md @@ -1,6 +1,6 @@ # GR -GR is the default backend for Plots. To explicitly specify the GR backend, you can use: +`GR` is the default backend for `Plots`. To explicitly specify the `GR` backend, you can use: ```julia using Plots diff --git a/docs/gallery/inspectdr/index.md b/docs/gallery/inspectdr/index.md index 549cbac24fc..7bca29e769c 100644 --- a/docs/gallery/inspectdr/index.md +++ b/docs/gallery/inspectdr/index.md @@ -1,6 +1,6 @@ # InspectDR -To switch to InspectDR backend, you can use: +To switch to the `InspectDR` backend, you can use: ```julia using Plots diff --git a/docs/gallery/pgfplotsx/index.md b/docs/gallery/pgfplotsx/index.md index 1d2aca3a19d..285c43e3fd3 100644 --- a/docs/gallery/pgfplotsx/index.md +++ b/docs/gallery/pgfplotsx/index.md @@ -1,6 +1,6 @@ # PGFPlotsX -To switch to PGFPlotsX backend, you can use: +To switch to the `PGFPlotsX` backend, you can use: ```julia using Plots diff --git a/docs/gallery/plotlyjs/index.md b/docs/gallery/plotlyjs/index.md index 9ee1fabe379..b2f8085a7f8 100644 --- a/docs/gallery/plotlyjs/index.md +++ b/docs/gallery/plotlyjs/index.md @@ -1,6 +1,6 @@ # PlotlyJS -To switch to PlotlyJS backend, you can use: +To switch to the `PlotlyJS` backend, you can use: ```julia using Plots diff --git a/docs/gallery/pyplot/index.md b/docs/gallery/pyplot/index.md index 53e3ae1519f..30c963ed085 100644 --- a/docs/gallery/pyplot/index.md +++ b/docs/gallery/pyplot/index.md @@ -1,6 +1,6 @@ # PyPlot -To switch to PyPlot backend, you can use: +To switch to the `PyPlot` backend, you can use: ```julia using Plots diff --git a/docs/gallery/unicodeplots/index.md b/docs/gallery/unicodeplots/index.md index d1d78524196..32737eceaf3 100644 --- a/docs/gallery/unicodeplots/index.md +++ b/docs/gallery/unicodeplots/index.md @@ -1,6 +1,6 @@ # UnicodePlots -To switch to the UnicodePlots backend, you can use: +To switch to the `UnicodePlots` backend, you can use: ```julia using Plots diff --git a/docs/make.jl b/docs/make.jl index e6399af8bb1..1ad24e74f09 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -24,13 +24,13 @@ galleries = Pair{String,String}[] galleries_cb = [] galleries_assets = String[] for (bename, be) in [ + ("UnicodePlots", :unicodeplots), ("GR", :gr), ("PlotlyJS", :plotlyjs), ("PyPlot", :pyplot), ("InspectDR", :inspectdr), ("Gaston", :gaston), ("PGFPlotsX", :pgfplotsx), - ("UnicodePlots", :unicodeplots), ] generate_cards(be) gallery_path, postprocess_cb, assets = makedemos("gallery/$be"; src="src/gallery")