Skip to content

Commit e53eae7

Browse files
committed
Update to the latest version of Documenter.jl
1 parent 1ecbd95 commit e53eae7

File tree

3 files changed

+5
-13
lines changed

3 files changed

+5
-13
lines changed

docs/Project.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,3 @@ PairPlots = "43a3c2be-4208-490b-832a-a21dcd55d7da"
77
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
88
TableTransforms = "0d432bfd-3ee1-4ac1-886a-39f05cc69a3e"
99
TransformsBase = "28dd2a49-a57a-4bfb-84ca-1a49db9b96b8"
10-
11-
[compat]
12-
Documenter = "0.27"

docs/make.jl

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,22 @@ using DocumenterTools: Themes
33

44
using TransformsBase
55

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-
126
DocMeta.setdocmeta!(TableTransforms, :DocTestSetup, :(using TableTransforms); recursive=true)
137

148
# Workaround for GR warnings
159
ENV["GKSwstype"] = "100"
1610

1711
makedocs(;
12+
warnonly=[:missing_docs, :cross_references],
1813
modules=[TableTransforms, TransformsBase],
1914
authors="Júlio Hoffimann <[email protected]> and contributors",
2015
repo="https://github.com/JuliaML/TableTransforms.jl/blob/{commit}{path}#{line}",
2116
sitename="TableTransforms.jl",
2217
format=Documenter.HTML(;
2318
prettyurls=get(ENV, "CI", "false") == "true",
2419
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"]
2922
),
3023
pages=[
3124
"Home" => "index.md",

docs/src/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,9 @@ The branches are placed in parallel with the `⊔` (`\sqcup<tab>`) operator.
105105

106106
```@docs
107107
108+
TransformsBase.SequentialTransform
108109
110+
TableTransforms.ParallelTableTransform
109111
```
110112

111113
### Reverting transforms

0 commit comments

Comments
 (0)