Disable pretty urls except in CI
This commit is contained in:
parent
206b7e9ade
commit
5a8934350c
|
@ -7,6 +7,7 @@ makedocs(;
|
|||
repo="https://github.com/invenia/PkgTemplates.jl/blob/{commit}{path}#L{line}",
|
||||
sitename="PkgTemplates.jl",
|
||||
format=Documenter.HTML(;
|
||||
prettyurls=get(ENV, "CI", "false") == "true",
|
||||
canonical="https://invenia.github.io/PkgTemplates.jl",
|
||||
assets=String[],
|
||||
),
|
||||
|
|
|
@ -7,6 +7,7 @@ makedocs(;
|
|||
repo="https://{{{REPO}}}/blob/{commit}{path}#L{line}",
|
||||
sitename="{{{PKG}}}.jl",
|
||||
format=Documenter.HTML(;
|
||||
prettyurls=get(ENV, "CI", "false") == "true",
|
||||
{{#CANONICAL}}
|
||||
canonical="{{{CANONICAL}}}",
|
||||
{{/CANONICAL}}
|
||||
|
|
|
@ -7,6 +7,7 @@ makedocs(;
|
|||
repo="https://github.com/tester/AllPlugins.jl/blob/{commit}{path}#L{line}",
|
||||
sitename="AllPlugins.jl",
|
||||
format=Documenter.HTML(;
|
||||
prettyurls=get(ENV, "CI", "false") == "true",
|
||||
assets=String[],
|
||||
),
|
||||
pages=[
|
||||
|
|
|
@ -7,6 +7,7 @@ makedocs(;
|
|||
repo="https://github.com/tester/WackyOptions.jl/blob/{commit}{path}#L{line}",
|
||||
sitename="WackyOptions.jl",
|
||||
format=Documenter.HTML(;
|
||||
prettyurls=get(ENV, "CI", "false") == "true",
|
||||
canonical="http://example.com",
|
||||
assets=[
|
||||
"assets/static.txt",
|
||||
|
|
Loading…
Reference in New Issue