Skip to content

Commit

Permalink
fix indents in makedocs
Browse files Browse the repository at this point in the history
  • Loading branch information
hyrodium committed Dec 31, 2023
1 parent 4705d84 commit 8ad2072
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ DocMeta.setdocmeta!(
recursive=true,
)

makedocs(modules=[DiffRules],
sitename = "DiffRules",
pages = ["Documentation" => "index.md"],
format = Documenter.HTML(
prettyurls = get(ENV, "CI", nothing) == "true"
),
checkdocs=:exports,
makedocs(
modules=[DiffRules],
sitename = "DiffRules",
pages = ["Documentation" => "index.md"],
format = Documenter.HTML(
prettyurls = get(ENV, "CI", nothing) == "true"
),
checkdocs=:exports,
)

deploydocs(; repo="github.com/JuliaDiff/DiffRules.jl", push_preview=true)

0 comments on commit 8ad2072

Please sign in to comment.