File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3
3
Markdown = " d6f4376e-aef5-505a-96c1-9c027394607a"
4
4
5
5
[compat ]
6
- Documenter = " ~0.20 "
6
+ Documenter = " ~0.22 "
Original file line number Diff line number Diff line change 1
1
# Use
2
2
#
3
- # DOCUMENTER_DEBUG=true julia --color=yes make.jl local [fixdoctests]
3
+ # DOCUMENTER_DEBUG=true julia --color=yes make.jl local [nonstrict] [ fixdoctests]
4
4
#
5
5
# for local builds.
6
6
@@ -10,17 +10,21 @@ using ArraysOfArrays
10
10
makedocs (
11
11
sitename = " ArraysOfArrays" ,
12
12
modules = [ArraysOfArrays],
13
- format = :html ,
13
+ format = Documenter. HTML (
14
+ prettyurls = ! (" local" in ARGS ),
15
+ canonical = " https://oschulz.github.io/ArraysOfArrays.jl/stable/"
16
+ ),
14
17
pages= [
15
18
" Home" => " index.md" ,
16
19
" API" => " api.md" ,
17
20
" LICENSE" => " LICENSE.md" ,
18
21
],
19
22
doctest = (" fixdoctests" in ARGS ) ? :fix : true ,
20
- html_prettyurls = ! ( " local " in ARGS ),
21
- html_canonical = " https://oschulz.github.io/ArraysOfArrays.jl/stable/ " ,
23
+ linkcheck = ( " linkcheck " in ARGS ),
24
+ strict = ! ( " nonstrict " in ARGS ) ,
22
25
)
23
26
24
27
deploydocs (
25
- repo = " github.com/oschulz/ArraysOfArrays.jl.git"
28
+ repo = " github.com/oschulz/ArraysOfArrays.jl.git" ,
29
+ forcepush = true
26
30
)
You can’t perform that action at this time.
0 commit comments