Skip to content

Commit 29f4a50

Browse files
authored
fix docs for Documenter 1 (#82)
1 parent 71cafb1 commit 29f4a50

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
.DS_Store
22
/Manifest.toml
33
/dev/
4+
/docs/build
5+
/docs/Manifest.toml

docs/Project.toml

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
[deps]
22
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
33
GeoJSON = "61d90e0f-e114-555e-ac52-39dfb47a3ef9"
4+
5+
[compat]
6+
Documenter = "1.1"

docs/make.jl

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,16 @@ using Documenter
33

44
makedocs(;
55
modules=[GeoJSON],
6-
repo="https://github.com/JuliaGeo/GeoJSON.jl/blob/{commit}{path}#{line}",
76
sitename="GeoJSON.jl",
87
format=Documenter.HTML(;
8+
repolink="https://github.com/JuliaGeo/GeoJSON.jl/",
99
prettyurls=get(ENV, "CI", "false") == "true",
1010
canonical="https://JuliaGeo.github.io/GeoJSON.jl",
1111
assets=String[],
1212
),
1313
pages=[
1414
"Home" => "index.md",
1515
],
16-
strict=true,
1716
)
1817

1918
deploydocs(;

0 commit comments

Comments
 (0)