-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add GeoInterfaceMakie as well * Add a build stage that moves cardmeta to the bottom of the doc * Document the cardmeta stage * Move basic's cardmeta block to the top * Switch to julia-docdeploy again * Packageify the gallery code * add the Project.toml and load * Fix action * Dont include gallery setup since its useless * import gallery dict * allow a Tags attr too * use Makie
- Loading branch information
1 parent
8dae48a
commit 19f92e8
Showing
13 changed files
with
92 additions
and
80 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,3 +22,5 @@ docs/build/ | |
node_modules/ | ||
docs/package-lock.json | ||
test_images/ | ||
|
||
docs/GeoMakieDocumenterBlocks/Manifest.toml |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[deps] | ||
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f" | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549" | ||
ImageIO = "82e4d734-157c-48bb-816b-45c225c6df19" | ||
ImageTransformations = "02fcd773-0e25-5acc-982a-7f6622650795" | ||
Makie = "ee78f7c6-11fb-53f2-987a-cfe4a2b5a57a" | ||
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a" | ||
MarkdownAST = "d0879d2d-cac2-40c8-9cee-1863dc0c7391" |
15 changes: 15 additions & 0 deletions
15
docs/GeoMakieDocumenterBlocks/src/GeoMakieDocumenterBlocks.jl
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
module GeoMakieDocumenterBlocks | ||
|
||
using Documenter | ||
using ImageTransformations, ImageIO, Base64, FileIO # for resize | ||
import Documenter: MarkdownAST | ||
using Makie | ||
|
||
const GALLERY_DICT = Dict{String, Any}() | ||
|
||
export GALLERY_DICT | ||
|
||
include("cardmeta.jl") | ||
include("overview.jl") | ||
|
||
end |
This file contains 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
File renamed without changes.
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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