Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integrate into the SciMLDocs system #78

Merged
merged 3 commits into from
Jun 5, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update make.jl
  • Loading branch information
ChrisRackauckas authored Jun 5, 2022
commit 6d13031f57749a592a42a501c25c371a6e24d7b1
23 changes: 3 additions & 20 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
# Pkg.add("Documenter")
using Documenter, PolyChaos

include("pages.jl")

makedocs(
sitename = "PolyChaos.jl",
format = Documenter.HTML(analytics = "UA-90474609-3",
Expand All @@ -10,26 +12,7 @@ makedocs(
modules = [PolyChaos],
authors = "[email protected]",
doctest = false,
pages = Any[
"index.md",
"type_hierarchy.md",
"Usage" => [
"numerical_integration.md",
"quadrature_rules.md",
"orthogonal_polynomials_canonical.md",
"gaussian_mixture_model.md",
"multiple_discretization.md",
"scalar_products.md",
"Polynomial Chaos" => [ "Basic Usage" => "pce_tutorial.md",
"Chi Squared, One DOF" => "chi_squared_k1.md",
"Chi Squared, Several DOFs" => "chi_squared_k_greater1.md",
"Random ODE" => "random_ode.md"
],
"Optimal Power Flow" => "DCsOPF.md"
],
"math.md",
"functions.md"
]
pages = pages
)


Expand Down