Posts

Showing posts with the label doxygen

c++ doxygen + breathe tables

c++ doxygen + breathe tables I have a large c++ project documented with doxygen. I want to use breathe to make nicer manuals. The in-source documentation often contain tables such as this: /** * @var somevar * @brief some variable * @defgroup somegroup Some Group * @details This stores some value in some variable * | English | German | Parameters | * |---------|--------|------------| * | `content of somevar %%s in english.n` | `content of somevar %%s in Germann` |`<Battery percent>` | */ I generate the xml docs in build/xml with doxygen and run sphinx to generate the docs. build/xml doxygen Doxyfile make html make latexpdf The directory structure looks like this: ├── build ├── Doxyfile ├── make.bat ├── Makefile └── source ├── conf.py ├── index.rst ├── somegroup.rst ├── _static └── _templates All works fine, documents are created, but the table is missing. I can see the table in the build/xml/group___somegroup.xml . The table is also shown in the html ...