|
| 1 | +using Documenter, DifferentialEquations |
| 2 | + |
| 3 | +makedocs(modules=[DifferentialEquations], |
| 4 | + doctest=false, clean=true, |
| 5 | + format =Documenter.Formats.HTML, |
| 6 | + sitename="DifferentialEquations.jl", |
| 7 | + authors="Chris Rackauckas", |
| 8 | + pages = Any[ |
| 9 | + "Home" => "index.md", |
| 10 | + "Tutorials" => Any[ |
| 11 | + "tutorials/ode_example.md", |
| 12 | + "tutorials/sde_example.md", |
| 13 | + "tutorials/dae_example.md", |
| 14 | + "tutorials/fempoisson_example.md", |
| 15 | + "tutorials/femheat_example.md", |
| 16 | + "tutorials/femstochastic_example.md" |
| 17 | + ], |
| 18 | + "Solver Options" => Any[ |
| 19 | + "solvers/ode_solve.md", |
| 20 | + "solvers/sde_solve.md", |
| 21 | + "solvers/dae_solve.md", |
| 22 | + "solvers/fempoisson_solve.md", |
| 23 | + "solvers/femheat_solve.md", |
| 24 | + "solvers/fdmstokes_solve.md" |
| 25 | + ], |
| 26 | + "Manual" => Any[ |
| 27 | + "man/overview.md", |
| 28 | + "man/ODEProblem.md", |
| 29 | + "man/SDEProblem.md", |
| 30 | + "man/FEMProblem.md", |
| 31 | + "man/StokesProblem.md", |
| 32 | + "man/mesh.md", |
| 33 | + "man/solution.md", |
| 34 | + "man/output_specification.md", |
| 35 | + "man/callback_functions.md", |
| 36 | + "man/plot.md", |
| 37 | + "man/parameter_estimation.md", |
| 38 | + "man/function_definition_macros.md", |
| 39 | + "man/benchmarks.md", |
| 40 | + "man/convergence.md", |
| 41 | + "man/conditional_dependencies.md", |
| 42 | + "man/progress_bar.md" |
| 43 | + ], |
| 44 | + "Internal Documentation" => Any[ |
| 45 | + "internals/contributors_guide.md", |
| 46 | + "internals/fem_tools.md", |
| 47 | + "internals/extras.md", |
| 48 | + "internals/solver_helpers.md", |
| 49 | + "internals/notes_on_algorithms.md", |
| 50 | + "internals/function_index.md" |
| 51 | + ] |
| 52 | + ]) |
| 53 | + |
| 54 | + |
| 55 | +deploydocs( |
| 56 | + repo = "github.com/JuliaDiffEq/DiffEqDocs.jl.git", |
| 57 | + target = "build", |
| 58 | + osname = "linux", |
| 59 | + julia = "0.5", |
| 60 | + deps = nothing, |
| 61 | + make = nothing) |
0 commit comments