Commit 101f06d
committed
fix: resolve MyST build warnings
Three warnings appear when running `myst build`:
1. basic_lessons/README.md "missing heading depth 2" — the page title is
depth 1 but "Using this book" and "Contents" jumped straight to depth 3,
skipping depth 2. Demote them to `##`.
2. lesson0_tutorial.md "Language is not defined for code block" — the
verification {code-cell} had no language. Add `python` to the directive
(``{code-cell} python``), which MyST records as the code language.
3. lesson2_tutorial.md "textEnv, Too few columns specified in the {array}
column argument" — the 4x4 homogeneous transformation matrices H_a and
H_a_b declared {array}{ccc} (3 columns) but have 4. Change to {cccc}.
Verified with a full `myst build --execute --html`: no warnings remain.
Co-authored-by: openhands <openhands@all-hands.dev>1 parent 9c66026 commit 101f06d
3 files changed
Lines changed: 5 additions & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
71 | 71 | | |
72 | 72 | | |
73 | 73 | | |
74 | | - | |
| 74 | + | |
75 | 75 | | |
76 | 76 | | |
77 | 77 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
322 | 322 | | |
323 | 323 | | |
324 | 324 | | |
325 | | - | |
| 325 | + | |
326 | 326 | | |
327 | 327 | | |
328 | 328 | | |
| |||
331 | 331 | | |
332 | 332 | | |
333 | 333 | | |
334 | | - | |
| 334 | + | |
335 | 335 | | |
336 | 336 | | |
337 | 337 | | |
| |||
0 commit comments