Merge pull request #285 from JunoLab/avi/docbuild

fix doc url and reenable doc build
pull/286/head v0.9.3
Shuhei Kadowaki 2020-03-06 02:41:07 +09:00 committed by GitHub
commit 0f5e3df9aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -2,7 +2,10 @@ using Documenter, Weave
makedocs(
modules = [Weave],
format = Documenter.HTML(prettyurls = get(ENV, "CI", nothing) == "true"),
format = Documenter.HTML(
prettyurls = get(ENV, "CI", nothing) == "true",
canonical = "http://weavejl.mpastell.com/stable/",
),
sitename = "Weave.jl",
pages = [
"index.md",
@ -18,6 +21,6 @@ makedocs(
include("make_examples.jl")
deploydocs(
repo = "github.com/mpastell/Weave.jl.git",
repo = "github.com/JunoLab/Weave.jl.git",
push_preview = true,
)