Skip to content

Commit 4e514e1

Browse files
committed
added docs
1 parent 6765fbf commit 4e514e1

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
*.jl.cov
22
*.jl.*.cov
33
*.jl.mem
4+
docs/build

docs/make.jl

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using Documenter
2+
using LightGraphsMatching
3+
import LightGraphs; const lg = LightGraphs
4+
5+
makedocs(
6+
modules = [LightGraphsMatching],
7+
format = :html,
8+
sitename = "LightGraphsMatching",
9+
pages = Any[
10+
"Getting started" => "index.md",
11+
]
12+
)

docs/src/index.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
```@meta
2+
CurrentModule = LightGraphsMatching
3+
DocTestSetup = quote
4+
using LightGraphsMatching
5+
import LightGraphs
6+
const lg = LightGraphs
7+
end
8+
```
9+
10+
```@autodocs
11+
Modules = [LightGraphsMatching]
12+
Pages = ["LightGraphsMatching.jl", "maximum_weight_matching.jl", "lp.jl", "blossomv.jl"]
13+
Order = [:function, :type]
14+
```

0 commit comments

Comments
 (0)