Skip to content

Commit

Permalink
Fix broken mkdocs html generation
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomas Lycken committed Sep 6, 2016
1 parent 79228e4 commit 380eae6
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
3 changes: 2 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ makedocs()

deploydocs(
repo = "github.com/tlycken/Contour.jl",
julia = "0.5"
julia = "0.5",
deps = Deps.pip("pygments", "mkdocs", "python-markdown-math")
)
7 changes: 4 additions & 3 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ markdown_extensions:
docs_dir: 'build'

pages:
- Home: index.md
- Tutorial: tutorial.md
- Reference: reference.md
- Contour.jl:
- index.md
- tutorial.md
- reference.md
3 changes: 0 additions & 3 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,3 @@ Contour.jl uses the [marching squares algorithm](http://en.wikipedia.org/wiki/Ma
to find [isolines](https://en.wikipedia.org/wiki/Contour_line) of a discrete
data set representing a function ``z = f(x, y)``.

[Tutorial](@ref)

[Reference](@ref)
11 changes: 10 additions & 1 deletion docs/src/reference.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
# Reference
# Entry points

```@docs
contour
contours
```

# Accessors

```@docs
level
levels
lines
coordinates
```

# Utilities
```@docs
Contour.contourlevels
```

0 comments on commit 380eae6

Please sign in to comment.