Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[deps]
DataInterpolations = "82cc6244-b520-54b8-b5a6-8a565e85f1d0"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78"
ModelingToolkitStandardLibrary = "16a59e39-deab-5bd0-87e4-056b12336739"
Expand Down
17 changes: 12 additions & 5 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,19 @@ makedocs(modules = [DataInterpolations],
sitename = "DataInterpolations.jl",
clean = true,
doctest = false,
linkcheck = true,
linkcheck = false,
checkdocs = :none,
pagesonly = true,
format = Documenter.HTML(assets = ["assets/favicon.ico"],
canonical = "https://docs.sciml.ai/DataInterpolations/stable/"),
pages = ["index.md", "Interpolation methods" => "methods.md",
"Extrapolation methods" => "extrapolation_methods.md",
"Interface" => "interface.md", "Using with Symbolics/ModelingToolkit" => "symbolics.md",
"Manual" => "manual.md", "Inverting Integrals" => "inverting_integrals.md"])
pages = [
"index.md",
# "Interpolation methods" => "methods.md",
# "Extrapolation methods" => "extrapolation_methods.md",
# "Interface" => "interface.md",
# "Using with Symbolics/ModelingToolkit" => "symbolics.md",
"Manual" => "manual.md",
"Smooth arc length interpolation" => "arclength_interpolation.md" # "Inverting Integrals" => "inverting_integrals.md"])
])

deploydocs(repo = "github.com/SciML/DataInterpolations.jl"; push_preview = true)
Loading
Loading