|
1 | | -using Documenter, ModelingToolkitCourse |
2 | | -# NOTE: OrdinaryDiffEq limited to v6.74.1 because of bug https://github.com/SciML/OrdinaryDiffEq.jl/issues/2250 |
3 | | - |
4 | | -pages = [ |
5 | | - "Home" => "index.md", |
6 | | - "lectures/lecture1.md", |
7 | | - "lectures/lecture2.md", |
8 | | - "lectures/lecture3.md", |
9 | | - "lectures/lecture4.md", |
10 | | - "lectures/lecture6.md", |
11 | | - "lectures/lecture7.md", |
12 | | - "lectures/lecture8.md", |
13 | | -] |
14 | | - |
15 | | -ENV["GKSwstype"] = "100" |
16 | | -using Plots |
17 | | - |
18 | | -makedocs(sitename = "ModelingToolkit Course", |
19 | | - authors = "Chris Rackauckas", |
20 | | - modules = [ModelingToolkitCourse], |
21 | | - clean = true, doctest = false, linkcheck = true, |
22 | | - linkcheck_ignore = ["https://epubs.siam.org/doi/10.1137/0903023", |
23 | | - "https://link.springer.com/book/10.1007/978-3-642-05221-7", |
24 | | - "http://www.siam.org/journals/auth-info.php"], |
25 | | - format = Documenter.HTML(assets = ["assets/favicon.ico"], |
26 | | - canonical = "https://docs.sciml.ai/ModelingToolkitCourse/stable/"), |
27 | | - pages = pages) |
28 | | - |
| 1 | +using Documenter, ModelingToolkitCourse |
| 2 | +# NOTE: OrdinaryDiffEq limited to v6.74.1 because of bug https://github.com/SciML/OrdinaryDiffEq.jl/issues/2250 |
| 3 | + |
| 4 | +pages = [ |
| 5 | + "Home" => "index.md", |
| 6 | + "lectures/lecture1.md", |
| 7 | + "lectures/lecture2.md", |
| 8 | + "lectures/lecture3.md", |
| 9 | + "lectures/lecture4.md", |
| 10 | + "lectures/lecture6.md", |
| 11 | + "lectures/lecture7.md", |
| 12 | + "lectures/lecture8.md", |
| 13 | +] |
| 14 | + |
| 15 | +ENV["GKSwstype"] = "100" |
| 16 | +using Plots |
| 17 | + |
| 18 | +makedocs( |
| 19 | + sitename = "ModelingToolkit Course", |
| 20 | + authors = "Chris Rackauckas", |
| 21 | + modules = [ModelingToolkitCourse], |
| 22 | + clean = true, doctest = false, linkcheck = true, |
| 23 | + linkcheck_ignore = [ |
| 24 | + "https://epubs.siam.org/doi/10.1137/0903023", |
| 25 | + "https://link.springer.com/book/10.1007/978-3-642-05221-7", |
| 26 | + "http://www.siam.org/journals/auth-info.php", |
| 27 | + ], |
| 28 | + format = Documenter.HTML( |
| 29 | + assets = ["assets/favicon.ico"], |
| 30 | + canonical = "https://docs.sciml.ai/ModelingToolkitCourse/stable/" |
| 31 | + ), |
| 32 | + pages = pages |
| 33 | +) |
| 34 | + |
29 | 35 | #= |
30 | 36 | using LiveServer |
31 | 37 | serve(dir="build") |
32 | | -=# |
33 | | - |
34 | | -deploydocs(repo = "github.com/SciML/ModelingToolkitCourse.git"; |
35 | | - push_preview = true) |
| 38 | +=# |
| 39 | + |
| 40 | +deploydocs( |
| 41 | + repo = "github.com/SciML/ModelingToolkitCourse.git"; |
| 42 | + push_preview = true |
| 43 | +) |
0 commit comments