Skip to content

Commit c8fbf79

Browse files
authored
See if the docs can be made to build again (#24)
* Update make.jl * Update make.jl * remove Manifest, use Julia highlighting
1 parent 2af19cb commit c8fbf79

File tree

3 files changed

+4
-115
lines changed

3 files changed

+4
-115
lines changed

docs/Manifest.toml

-111
This file was deleted.

docs/make.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ using Documenter, Delaunator
22

33
makedocs(;
44
modules=[Delaunator],
5-
format=Documenter.HTML(),
5+
format=Documenter.HTML(;),
66
pages=[
77
"Home" => "index.md",
88
"API" => "api.md"

docs/src/index.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
The API consists of a set of types for static triangulations, and getting
77
info about the triangulation.
88

9-
```
9+
```julia
1010
t = Triangulation(points)
1111
triangles(t) # get an iterator over the triangles
1212
triangles(t)
@@ -31,7 +31,7 @@ clippedpoly(p, bbox)
3131

3232
There is also a set of types for more dynamic scenarios, where you may not
3333
want all the computed information for speed.
34-
```
34+
```julia
3535
bt, cdata = basictriangulation(points; [maxpoints=Integer]) # initialize data structures
3636
bt, cdata = update!(bt, points, cdata) # after the points have been changed, may incur allocations
3737
h = gethull(bt, cdata)
@@ -40,7 +40,7 @@ index = index_halfedges(bt, cdata)
4040

4141
Planned implementations
4242
-----------------------
43-
```
43+
```julia
4444
# cell diagram methods
4545
cells(t, bbox) # get an iterator over the nearest point / voronoi cells given the bounding box
4646
bd = celldiagram(t [, centers]; [margin=0.05, boundingbox=mar()])

0 commit comments

Comments
 (0)