Skip to content

Commit 04c63e7

Browse files
committed
docs: enable documentation build and remove redundant Draft meta
- Set draft = false in make.jl to enable @example block execution - Remove redundant @meta Draft = false from manual-macro-free.md (draft mode is now controlled globally by make.jl)
1 parent da206ec commit 04c63e7

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

docs/make.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ cp(
153153
Draft = false
154154
```
155155
=#
156-
draft = true # Draft mode: if true, @example blocks in markdown are not executed
156+
draft = false # Draft mode: if true, @example blocks in markdown are not executed
157157

158158
# ═══════════════════════════════════════════════════════════════════════════════
159159
# Load extensions

docs/src/manual-macro-free.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
# [Functional API (macro-free)](@id manual-macro-free)
22

3-
```@meta
4-
Draft = false
5-
```
6-
73
The [`@def`](@ref manual-abstract-syntax) macro provides a concise DSL to define optimal control problems. An alternative is the **functional API**, which builds the same problem step by step using plain Julia functions. This approach is useful when:
84

95
- generating problems **programmatically** from parameters, data, or loops,

0 commit comments

Comments
 (0)