We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64b89ac commit 33bba13Copy full SHA for 33bba13
docs/make.jl
@@ -12,11 +12,13 @@ for Module ∈ Modules
12
DocMeta.setdocmeta!(Module, :DocTestSetup, :(using $Module); recursive = true)
13
end
14
15
-#
+repo_url = "github.com/control-toolbox/OptimalControl.jl"
16
+
17
makedocs(
18
warnonly = [:cross_references, :autodocs_block],
19
sitename = "OptimalControl.jl",
- format = Documenter.HTML(
20
+ format = Documenter.HTML(;
21
+ repolink = "https://"*repo_url,
22
prettyurls = false,
23
size_threshold_ignore = ["api-ctbase/types.md", "tutorial-plot.md"],
24
assets = [
@@ -62,5 +64,6 @@ makedocs(
62
64
],
63
65
)
66
-deploydocs(repo = "github.com/control-toolbox/OptimalControl.jl.git", devbranch = "main")
67
+deploydocs(;
68
+ repo=repo_url*".git", devbranch="main"
69
+)
0 commit comments