Skip to content

Commit 34b44d0

Browse files
authored
Switch to Documenter v1.0 (#322)
1 parent da6f801 commit 34b44d0

File tree

5 files changed

+22
-293
lines changed

5 files changed

+22
-293
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,7 @@ benchmark/.results/*
88
benchmark/.tune.jld
99
*.cov
1010
/Manifest.toml
11+
/docs/Manifest.toml
12+
/docs/src/index.md
13+
/docs/src/contributing.md
14+
/docs/src/license.md

docs/Manifest.toml

Lines changed: 0 additions & 292 deletions
This file was deleted.

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
33
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
44

55
[compat]
6-
Documenter = "~0.27"
6+
Documenter = "1"

docs/make.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ pages_files = [
6969
],
7070
"For advanced users" => [
7171
"advanced/errorhandling.md",
72+
"advanced/test.md",
7273
"advanced/experimental.md",
7374
"advanced/parallel.md",
7475
"contributing.md",

docs/src/advanced/test.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Test graphs
2+
3+
`Graphs.Test` is a module containing generic graph structures which make as few hypotheses as possible beyond the basic interface.
4+
It is not part of the public API and may break unexpectedly.
5+
6+
## Index
7+
8+
```@index
9+
Pages = ["test.md"]
10+
```
11+
12+
## Full docs
13+
14+
```@autodocs
15+
Modules = [Graphs.Test]
16+
```

0 commit comments

Comments
 (0)