diff --git a/docs/make.jl b/docs/make.jl index 4bbc19af..e3b6614e 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -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" )