Skip to content

Commit d9fbfb2

Browse files
authored
Disable draft mode in makedocs function
Comment out draft mode for documentation generation.
1 parent f350938 commit d9fbfb2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/make.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,12 +128,12 @@ Draft = false
128128
```
129129
=#
130130
makedocs(;
131-
draft=true, # if draft is true, then the julia code from .md is not executed # debug
131+
#draft=true, # if draft is true, then the julia code from .md is not executed # debug
132132
# to disable the draft mode in a specific markdown file, use the following:
133133
# ```@meta
134134
# Draft = false
135135
# ```
136-
#draft=false,
136+
draft=false,
137137
#warnonly=[:cross_references, :autodocs_block],
138138
sitename="OptimalControl.jl",
139139
format=Documenter.HTML(;

0 commit comments

Comments
 (0)