-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2815163
commit d3a8518
Showing
3 changed files
with
341 additions
and
117 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,24 @@ | ||
using TriangularSolve | ||
using Documenter | ||
|
||
DocMeta.setdocmeta!(TriangularSolve, :DocTestSetup, :(using TriangularSolve); recursive=true) | ||
DocMeta.setdocmeta!( | ||
TriangularSolve, | ||
:DocTestSetup, | ||
:(using TriangularSolve); | ||
recursive = true, | ||
) | ||
|
||
makedocs(; | ||
modules=[TriangularSolve], | ||
authors="chriselrod <[email protected]> and contributors", | ||
repo="https://github.com/JuliaSIMD/TriangularSolve.jl/blob/{commit}{path}#{line}", | ||
sitename="TriangularSolve.jl", | ||
format=Documenter.HTML(; | ||
prettyurls=get(ENV, "CI", "false") == "true", | ||
canonical="https://JuliaSIMD.github.io/TriangularSolve.jl", | ||
assets=String[], | ||
), | ||
pages=[ | ||
"Home" => "index.md", | ||
], | ||
modules = [TriangularSolve], | ||
authors = "chriselrod <[email protected]> and contributors", | ||
repo = "https://github.com/JuliaSIMD/TriangularSolve.jl/blob/{commit}{path}#{line}", | ||
sitename = "TriangularSolve.jl", | ||
format = Documenter.HTML(; | ||
prettyurls = get(ENV, "CI", "false") == "true", | ||
canonical = "https://JuliaSIMD.github.io/TriangularSolve.jl", | ||
assets = String[], | ||
), | ||
pages = ["Home" => "index.md"], | ||
) | ||
|
||
deploydocs(; | ||
repo="github.com/JuliaSIMD/TriangularSolve.jl", | ||
) | ||
deploydocs(; repo = "github.com/JuliaSIMD/TriangularSolve.jl") |
Oops, something went wrong.