You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/configuration.md
+192Lines changed: 192 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -278,3 +278,195 @@ GitHub admonitions are automatically translated to sphinx.
278
278
> [!CAUTION]
279
279
> Caution content
280
280
281
+
## Breathe/Doxygen Integration
282
+
283
+
Yardang provides integration with [Breathe](https://breathe.readthedocs.io/) for documenting C/C++ code using Doxygen. To use this feature, install yardang with the breathe extra:
284
+
285
+
```bash
286
+
pip install yardang[breathe]
287
+
```
288
+
289
+
All breathe configuration is under `[tool.yardang.breathe]`.
290
+
291
+
### `projects`
292
+
293
+
A dictionary mapping project names to their Doxygen XML output directories.
294
+
295
+
```toml
296
+
[tool.yardang.breathe]
297
+
projects = { myproject = "docs/doxygen/xml", another = "path/to/xml" }
298
+
```
299
+
300
+
### `default-project`
301
+
302
+
The default project to use when no project is specified in breathe directives.
0 commit comments