-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathmake.jl
More file actions
24 lines (20 loc) · 707 Bytes
/
make.jl
File metadata and controls
24 lines (20 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
cd(@__DIR__)
using DynamicalSystemsBase
using StochasticDiffEq, DiffEqNoiseProcess # to enable extention
# We need this because Documenter doesn't know where to get the docstring from otherwise
StochasticSystemsBase = Base.get_extension(DynamicalSystemsBase, :StochasticSystemsBase)
pages = [
"index.md",
"CoupledSDEs.md",
]
using DynamicalSystemsBase.SciMLBase
import Downloads
Downloads.download(
"https://raw.githubusercontent.com/JuliaDynamics/doctheme/master/build_docs_with_style.jl",
joinpath(@__DIR__, "build_docs_with_style.jl")
)
include("build_docs_with_style.jl")
build_docs_with_style(
pages,
DynamicalSystemsBase, SciMLBase, StateSpaceSets, StochasticSystemsBase
)