Arwed S.
Arwed S.
Hello, first of all thanks for this awesome extension to Sphinx. I would like to set a namespace like with the `.. cpp:namespace:: my_namespace` directive. Example.h ```{cpp} namespace my_namespace {...
Dear breathe team, I'm (mis)using breathe to import Python docstrings as a replacement for autodoc, in a build environment where I don't have the python package dependencies available. I noticed...
Hi @michaeljones , in the manual, there's a section about [differences to autodoc](https://breathe.readthedocs.io/en/latest/differences.html#sphinx-autodoc). I think I found one: With autodoc, you can include the same class twice, but just a...
I get the following warning, which only appears in a certain project, but does not appear with the same code extracted to a sample project (which is why I can't...
### Describe the bug **context** We have documents which have a structure very similar to the [C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#S-errors) and use HTML anchors in heading the very same way as...
**Is your feature request related to a problem? Please describe.** I cannot combine MyST with other non-default Sphinx extensions, like breathe. In RST, I would write:: `.. doxygenstruct:: MyStruct` (https://breathe.readthedocs.io/en/latest/struct.html)...
**Describe the bug** MyST crashes without error message if "directive_class" is not a class. **To Reproduce** Cannot reproduce, because the error message does not mention the problematic file and the...
### Description / Summary Doxygen provides a nice syntax for including a table of contents to a markdown document: Simply add `[TOC]` as a placeholder. The table of contents will...
### Description / Summary In plain reStructuredText, [labels](https://www.sphinx-doc.org/en/master/usage/restructuredtext/roles.html#ref-role) can be placed in arbitrary locations and be referenced by the `:ref:` role. In MyST markdown, I get a warning for `figure_label`in...
### Description / Summary In our (big) project, we have the convention to format at least level 1 headings always with Setext (underline) - there is also always just one...