Skip to content

Commit 5800c30

Browse files
fix docs build
1 parent fdce1e8 commit 5800c30

File tree

2 files changed

+18
-15
lines changed

2 files changed

+18
-15
lines changed

docs/make.jl

+3-15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
using Documenter, Integrals
22

3+
include("pages.jl")
4+
35
makedocs(
46
sitename="Integrals.jl",
57
authors="Chris Rackauckas",
@@ -8,21 +10,7 @@ makedocs(
810
format = Documenter.HTML(analytics = "UA-90474609-3",
911
assets = ["assets/favicon.ico"],
1012
canonical="https://integrals.sciml.ai/stable/"),
11-
pages=[
12-
"Home" => "index.md",
13-
"Tutorials" => Any[
14-
"tutorials/numerical_integrals.md",
15-
"tutorials/differentiating_integrals.md"
16-
],
17-
"Basics" => Any[
18-
"basics/IntegralProblem.md",
19-
"basics/solve.md",
20-
"basics/FAQ.md"
21-
],
22-
"Solvers" => Any[
23-
"solvers/IntegralSolvers.md
24-
]
25-
]
13+
pages=pages
2614
)
2715

2816
deploydocs(

docs/pages.jl

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
pages = [
2+
"Home" => "index.md",
3+
"Tutorials" => Any[
4+
"tutorials/numerical_integrals.md",
5+
"tutorials/differentiating_integrals.md"
6+
],
7+
"Basics" => Any[
8+
"basics/IntegralProblem.md",
9+
"basics/solve.md",
10+
"basics/FAQ.md"
11+
],
12+
"Solvers" => Any[
13+
"solvers/IntegralSolvers.md"
14+
]
15+
]

0 commit comments

Comments
 (0)