fix doc url and reenable doc build

pull/285/head
Shuhei Kadowaki 2020-03-06 01:08:07 +09:00
parent 372974e1ad
commit deeb54dc7c
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,
)