Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Commit

Permalink
Fixing the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
pwl committed Sep 16, 2016
1 parent 9f02b20 commit 5005e31
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ os:
- osx
- linux
julia:
# - release
- 0.5
- nightly
git:
depth: 999999
Expand Down
14 changes: 10 additions & 4 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,23 @@ using Documenter, ODE

makedocs(
format = Documenter.Formats.HTML,
sitename = "ODE",
modules = [ODE],
clean = false,
sitename = "ODE.jl",
pages = [
"Home" => "index.md",

"Manual" => [ "Basics" => "man/basics.md",
"Base" => "man/base.md" ]
"Manual" => [
"Basics" => "man/basics.md",
"Base" => "man/base.md"
]
]

)

deploydocs(
repo = "github.com/JuliaODE/ODE.jl.git",
deps = Deps.pip("pygments", "python-markdown-math")
target = "build",
deps = nothing,
make = nothing
)

0 comments on commit 5005e31

Please sign in to comment.