diff --git a/docs/make.jl b/docs/make.jl index 73d284d..2bcfe46 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -1,23 +1,17 @@ using Documenter using KrylovKit -makedocs( - modules = [KrylovKit], - sitename = "KrylovKit.jl", - authors = "Jutho Haegeman", - pages = [ - "Home" => "index.md", - "Manual" => [ - "man/intro.md", - "man/linear.md", - "man/eig.md", - "man/svd.md", - "man/matfun.md", - "man/algorithms.md", - "man/implementation.md", - ], - ], - format = Documenter.HTML(prettyurls = get(ENV, "CI", nothing) == "true"), -) +makedocs(; modules=[KrylovKit], + sitename="KrylovKit.jl", + authors="Jutho Haegeman", + pages=["Home" => "index.md", + "Manual" => ["man/intro.md", + "man/linear.md", + "man/eig.md", + "man/svd.md", + "man/matfun.md", + "man/algorithms.md", + "man/implementation.md"]], + format=Documenter.HTML(; prettyurls=get(ENV, "CI", nothing) == "true")) -deploydocs(repo = "github.com/Jutho/KrylovKit.jl.git") +deploydocs(; repo="github.com/Jutho/KrylovKit.jl.git")