Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ ColorSchemes = "35d6a980-a343-548e-a6ea-1d62b119f2f4"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
DocumenterInterLinks = "d12716ef-a0f6-4df4-a9f1-a5a34e75c656"
Images = "916415d5-f1e6-5110-898d-aaa5f9f070e0"
MatrixMarket = "4d4711f2-db25-561a-b6b3-d35e7d4047d3"
SparseMatrixColorings = "0a514795-09f3-496d-8182-132a7b665d35"
StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3"
9 changes: 7 additions & 2 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,14 @@ makedocs(;
sitename="SparseMatrixColorings.jl",
format=Documenter.HTML(),
pages=[
"Home" => "index.md", "api.md", "Developer Documentation" => ["dev.md", "vis.md"]
"Home" => "index.md",
"api.md",
"Tutorials" => "tutorials.md",
"Developer Documentation" => ["dev.md", "vis.md"],
],
plugins=[links],
)

deploydocs(; repo="github.com/gdalle/SparseMatrixColorings.jl", devbranch="main")
deploydocs(;
repo="github.com/gdalle/SparseMatrixColorings.jl", push_preview=true, devbranch="main"
)
Loading