[clang] [clang][CIR][docs] Fix invalid MyST toctree 'numbered' option (PR #213898)

via cfe-commits cfe-commits at lists.llvm.org
Tue Aug 4 03:33:13 PDT 2026


llvmorg-github-actions[bot] wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-clang

Author: Balázs Benics (steakhal)

<details>
<summary>Changes</summary>

Similar to #<!-- -->207217

The RST-to-Markdown migration (#<!-- -->206181) converted the RST flag `:numbered:` into `:numbered: true`.

MyST parses the toctree `numbered` option as `int_or_nothing`, so the string `true` fails with:

```
'toctree': Invalid option value for 'numbered': true:
invalid literal for int() with base 10: 'true'
```

This breaks the `-W` (warnings-as-errors) `docs-clang-html` build. Make `numbered` a valueless flag, which MyST accepts (equivalent to the original RST behavior of numbering all levels).

---
Full diff: https://github.com/llvm/llvm-project/pull/213898.diff


1 Files Affected:

- (modified) clang/docs/CIR/index.md (+1-1) 


``````````diff
diff --git a/clang/docs/CIR/index.md b/clang/docs/CIR/index.md
index a594ac50dbf67..a418c4ae5caa9 100644
--- a/clang/docs/CIR/index.md
+++ b/clang/docs/CIR/index.md
@@ -14,7 +14,7 @@ a position between Clang's AST and LLVM IR.
 
 ```{toctree}
 :maxdepth: 1
-:numbered: true
+:numbered:
 
 ABILowering
 CleanupAndEHDesign

``````````

</details>


https://github.com/llvm/llvm-project/pull/213898


More information about the cfe-commits mailing list