Skip to content

Commit 7f3d157

Browse files
authored
Merge pull request #29 from control-toolbox/28-doc-add-newtonraphson
Add NonlinearSolve comparision in Goddard tutorial
2 parents aa92b3b + 7011c60 commit 7f3d157

File tree

6 files changed

+355
-368
lines changed

6 files changed

+355
-368
lines changed

docs/make.jl

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
using Documenter
22
using OptimalControl
33

4-
mkpath("./docs/src/assets")
5-
cp("./docs/Manifest.toml", "./docs/src/assets/Manifest.toml"; force=true)
6-
cp("./docs/Project.toml", "./docs/src/assets/Project.toml"; force=true)
4+
# For reproducibility
5+
mkpath(joinpath(@__DIR__, "src", "assets"))
6+
cp(joinpath(@__DIR__, "Manifest.toml"), joinpath(@__DIR__, "src", "assets", "Manifest.toml"), force = true)
7+
cp(joinpath(@__DIR__, "Project.toml"), joinpath(@__DIR__, "src", "assets", "Project.toml"), force = true)
78

89
repo_url = "github.com/control-toolbox/Tutorials.jl"
910

1011
makedocs(;
1112
draft=false, # if draft is true, then the julia code from .md is not executed
13+
# to disable the draft mode in a specific markdown file, use the following:
14+
# ```@meta
15+
# Draft = false
16+
# ```
1217
warnonly=[:cross_references, :autodocs_block],
1318
sitename="Tutorials",
1419
format=Documenter.HTML(;

0 commit comments

Comments
 (0)