Skip to content

Commit

Permalink
format arguments in makedocs
Browse files Browse the repository at this point in the history
  • Loading branch information
hyrodium committed Jan 6, 2024
1 parent 675b191 commit c51f7b4
Showing 1 changed file with 20 additions and 14 deletions.
34 changes: 20 additions & 14 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,19 +1,25 @@
using Documenter, ForwardDiff

makedocs(modules=[ForwardDiff],
doctest = false,
sitename = "ForwardDiff",
pages = ["Introduction" => "index.md",
"User Documentation" => [
"Limitations of ForwardDiff" => "user/limitations.md",
"Differentiation API" => "user/api.md",
"Advanced Usage Guide" => "user/advanced.md",
"Upgrading from Older Versions" => "user/upgrade.md"],
"Developer Documentation" => [
"How ForwardDiff Works" => "dev/how_it_works.md",
"How to Contribute" => "dev/contributing.md"]],
checkdocs=:exports)
makedocs(
modules=[ForwardDiff],
doctest=false,
sitename="ForwardDiff",
pages=[
"Introduction" => "index.md",
"User Documentation" => [
"Limitations of ForwardDiff" => "user/limitations.md",
"Differentiation API" => "user/api.md",
"Advanced Usage Guide" => "user/advanced.md",
"Upgrading from Older Versions" => "user/upgrade.md"
],
"Developer Documentation" => [
"How ForwardDiff Works" => "dev/how_it_works.md",
"How to Contribute" => "dev/contributing.md"
]
],
checkdocs=:exports,
)

deploydocs(
repo = "github.com/JuliaDiff/ForwardDiff.jl.git"
repo="github.com/JuliaDiff/ForwardDiff.jl.git"
)

0 comments on commit c51f7b4

Please sign in to comment.