We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff506da commit 9c18dadCopy full SHA for 9c18dad
docs/make.jl
@@ -2,10 +2,13 @@ using Documenter
2
using CTBase
3
using DocumenterMermaid
4
5
+repo_url = "github.com/control-toolbox/CTBase.jl"
6
+
7
makedocs(;
8
warnonly = [:cross_references, :autodocs_block],
9
sitename = "CTBase.jl",
10
format = Documenter.HTML(
11
+ repolink = "https://"*repo_url,
12
prettyurls = false,
13
size_threshold_ignore = ["api.md", "dev.md"],
14
assets = [
@@ -17,4 +20,6 @@ makedocs(;
17
20
checkdocs = :none,
18
21
)
19
22
-deploydocs(repo = "github.com/control-toolbox/CTBase.jl.git", devbranch = "main")
23
+deploydocs(;
24
+ repo=repo_url*".git", devbranch="main"
25
+)
0 commit comments