Skip to content

Commit

Permalink
Merge pull request #137 from ArnoStrouwen/md
Browse files Browse the repository at this point in the history
format markdown
  • Loading branch information
ChrisRackauckas authored Jan 23, 2023
2 parents fa7a14d + 5cfc1bb commit 0ee9cb7
Show file tree
Hide file tree
Showing 40 changed files with 1,534 additions and 1,452 deletions.
2 changes: 2 additions & 0 deletions .JuliaFormatter.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
style = "sciml"
format_markdown = true
1 change: 0 additions & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

The MIT License (MIT)

Copyright (c) 2022 Chris Rackauckas
Expand Down
98 changes: 45 additions & 53 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -31,58 +31,50 @@ makedocs(sitename = "Overview of Julia's SciML",
canonical = "https://docs.sciml.ai/stable/",
mathengine = mathengine),
pages = [
"SciML: Open Source Software for Scientific Machine Learning with Julia" => "index.md",
"Getting Started" => [
"getting_started/getting_started.md",
"New User Tutorials" => [
"getting_started/installation.md",
"getting_started/first_simulation.md",
"getting_started/first_optimization.md",
"getting_started/fit_simulation.md",
"getting_started/find_root.md",
],
"Comparison With Other Tools" => [
"comparisons/python.md",
"comparisons/matlab.md",
"comparisons/r.md",
"comparisons/cppfortran.md",
],
],
"Showcase of Cool Examples" => Any[
"showcase/showcase.md",
"Automated Model Discovery" => Any[
"showcase/missing_physics.md",
"showcase/bayesian_neural_ode.md",
],
"Solving Difficult Equations Efficiently" => Any[
"showcase/brusselator.md",
"showcase/pinngpu.md",
"showcase/massively_parallel_gpu.md",
"showcase/gpu_spde.md",
],
"Useful Cool Wonky Things" => Any[
"showcase/ode_types.md",
"showcase/symbolic_analysis.md",
],
],
"What is SciML?" => ["overview.md",
"Solvers" => ["highlevels/equation_solvers.md",
"highlevels/inverse_problems.md",
"highlevels/partial_differential_equation_solvers.md"],
"Modeling Tools" => ["highlevels/modeling_languages.md",
"highlevels/model_libraries_and_importers.md",
"highlevels/symbolic_tools.md",
"highlevels/array_libraries.md"],
"Simulation Analysis" => ["highlevels/parameter_analysis.md",
"highlevels/uncertainty_quantification.md",
"highlevels/plots_visualization.md"],
"Machine Learning" => ["highlevels/function_approximation.md",
"highlevels/implicit_layers.md",
"highlevels/symbolic_learning.md"],
"Developer Tools" => ["highlevels/numerical_utilities.md",
"highlevels/interfaces.md",
"highlevels/developer_documentation.md"],
"Extra Learning Resources" => ["highlevels/learning_resources.md"],
]])
"SciML: Open Source Software for Scientific Machine Learning with Julia" => "index.md",
"Getting Started" => [
"getting_started/getting_started.md",
"New User Tutorials" => [
"getting_started/installation.md",
"getting_started/first_simulation.md",
"getting_started/first_optimization.md",
"getting_started/fit_simulation.md",
"getting_started/find_root.md",
],
"Comparison With Other Tools" => [
"comparisons/python.md",
"comparisons/matlab.md",
"comparisons/r.md",
"comparisons/cppfortran.md",
],
],
"Showcase of Cool Examples" => Any["showcase/showcase.md",
"Automated Model Discovery" => Any["showcase/missing_physics.md",
"showcase/bayesian_neural_ode.md"],
"Solving Difficult Equations Efficiently" => Any["showcase/brusselator.md",
"showcase/pinngpu.md",
"showcase/massively_parallel_gpu.md",
"showcase/gpu_spde.md"],
"Useful Cool Wonky Things" => Any["showcase/ode_types.md",
"showcase/symbolic_analysis.md"]],
"What is SciML?" => ["overview.md",
"Solvers" => ["highlevels/equation_solvers.md",
"highlevels/inverse_problems.md",
"highlevels/partial_differential_equation_solvers.md"],
"Modeling Tools" => ["highlevels/modeling_languages.md",
"highlevels/model_libraries_and_importers.md",
"highlevels/symbolic_tools.md",
"highlevels/array_libraries.md"],
"Simulation Analysis" => ["highlevels/parameter_analysis.md",
"highlevels/uncertainty_quantification.md",
"highlevels/plots_visualization.md"],
"Machine Learning" => ["highlevels/function_approximation.md",
"highlevels/implicit_layers.md",
"highlevels/symbolic_learning.md"],
"Developer Tools" => ["highlevels/numerical_utilities.md",
"highlevels/interfaces.md",
"highlevels/developer_documentation.md"],
"Extra Learning Resources" => ["highlevels/learning_resources.md"],
]])

deploydocs(repo = "github.com/SciML/SciMLDocs")
Loading

0 comments on commit 0ee9cb7

Please sign in to comment.