From d6b8a590df25b336d07914249b7129bee1868fa7 Mon Sep 17 00:00:00 2001 From: Olivier Cots <66357348+ocots@users.noreply.github.com> Date: Tue, 10 Sep 2024 21:05:36 +0200 Subject: [PATCH] Update make.jl --- docs/make.jl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/make.jl b/docs/make.jl index b32f7e2..4bae6d1 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -1,9 +1,12 @@ using Documenter +repo_url = "github.com/control-toolbox/MedicalResonanceImaging.jl" + makedocs(; warnonly=:cross_references, sitename="Medical Resonance Imaging", format=Documenter.HTML(; + repolink = "https://"*repo_url, prettyurls=false, size_threshold_ignore=["saturation.md", "bloch-equation.md"], assets=[ @@ -19,5 +22,5 @@ makedocs(; ) deploydocs(; - repo="github.com/control-toolbox/MedicalResonanceImaging.jl.git", devbranch="main" + repo=repo_url*".git", devbranch="main" )