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 4377f19 commit a2823c7Copy full SHA for a2823c7
3 files changed
.gitignore
@@ -7,10 +7,11 @@ research/
7
/docs/build/
8
/docs/site/
9
/docs/make_local.jl
10
+/docs/src/assets/logo.png
11
/examples/wip
12
/examples/ignore
13
/examples/.ipynb_checkpoints
14
.vscode
15
/issue_debug
16
Manifest.toml
-test/Manifest.toml
17
+test/Manifest.toml
docs/make.jl
@@ -4,6 +4,10 @@ using Documenter.Remotes: GitHub
4
5
DocMeta.setdocmeta!(ComponentArrays, :DocTestSetup, :(using ComponentArrays))
6
+# Copy the logo from root assets to doc assets folder so that Documenter can use
+# it as favicon/sidebar logo
+cp("./assets/logo.png", "./docs/src/assets/logo.png", force = true)
+
makedocs(;
modules = [ComponentArrays],
format = Documenter.HTML(
docs/src/assets/logo.png
0 commit comments