@@ -3,29 +3,22 @@ using DocumenterTools: Themes
3
3
4
4
using TransformsBase
5
5
6
- Themes. compile (
7
- joinpath (@__DIR__ , " src/assets/light.scss" ),
8
- joinpath (@__DIR__ , " src/assets/themes/documenter-light.css" )
9
- )
10
- Themes. compile (joinpath (@__DIR__ , " src/assets/dark.scss" ), joinpath (@__DIR__ , " src/assets/themes/documenter-dark.css" ))
11
-
12
6
DocMeta. setdocmeta! (TableTransforms, :DocTestSetup , :(using TableTransforms); recursive= true )
13
7
14
8
# Workaround for GR warnings
15
9
ENV [" GKSwstype" ] = " 100"
16
10
17
11
makedocs (;
12
+ warnonly= [:missing_docs , :cross_references ],
18
13
modules= [TableTransforms, TransformsBase],
19
14
authors
= " Júlio Hoffimann <[email protected] > and contributors" ,
20
15
repo= " https://github.com/JuliaML/TableTransforms.jl/blob/{commit}{path}#{line}" ,
21
16
sitename= " TableTransforms.jl" ,
22
17
format= Documenter. HTML (;
23
18
prettyurls= get (ENV , " CI" , " false" ) == " true" ,
24
19
canonical= " https://JuliaML.github.io/TableTransforms.jl" ,
25
- assets= [
26
- " assets/favicon.ico" ,
27
- asset (" https://fonts.googleapis.com/css?family=Montserrat|Source+Code+Pro&display=swap" , class= :css )
28
- ]
20
+ repolink= " https://github.com/JuliaML/TableTransforms.jl" ,
21
+ assets= [" assets/favicon.ico" ]
29
22
),
30
23
pages= [
31
24
" Home" => " index.md" ,
0 commit comments