Skip to content

Commit

Permalink
📝
Browse files Browse the repository at this point in the history
  • Loading branch information
gottacatchenall committed Jun 23, 2024
1 parent 527ddf6 commit 4f99a53
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 17 deletions.
34 changes: 17 additions & 17 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
push!(LOAD_PATH, "../src/")
using Documenter, DocumenterVitepress

using Documenter
using DocumenterCitations
using DocumenterMarkdown
push!(LOAD_PATH, "../src/")
using SpeciesInteractionSamplers

bibliography = CitationBibliography(joinpath(@__DIR__, "SIS.bib"))

makedocs(
bibliography;
sitename="SpeciesInteractionSamplers.jl",
authors="Michael D. Catchen",
makedocs(;
modules=[SpeciesInteractionSamplers],
format=Markdown(),)

authors="Michael D. Catchen",
repo="https://github.com/gottacatchenall/SpeciesInteractionSamplers.jl",
sitename="SpeciesInteractionSamplers.jl",
format=DocumenterVitepress.MarkdownVitepress(
repo="https://github.com/gottacatchenall/SpeciesInteractionSamplers.jl",
devurl="dev",
deploy_url="gottacatchenall.github.io/SpeciesInteractionSamplers.jl",
),
pages=[
"Home" => "index.md",
],
warnonly=true,
)

deploydocs(;
deps=Deps.pip("mkdocs", "pygments", "python-markdown-math", "mkdocs-material"),
repo="github.com/gottacatchenall/SpeciesInteractionSamplers.jl.git",
devbranch="main",
make=() -> run(`mkdocs build`),
target="site",
repo="github.com/gottacatchenall/SpeciesInteractionSamplers.jl",
push_preview=true,
)

Expand Down
6 changes: 6 additions & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
# SpeciesInteractionSamplers.jl

Documentation for `SpeciesInteractionSamplers.jl`.

```@autodocs
Modules=[SpeciesInteractionSamplers]
```

0 comments on commit 4f99a53

Please sign in to comment.