Replies: 1 comment
-
Sure. That sounds good. I'm not sure all functions are so well documented but the comments are reasonable and they are in the doxygen format already. It's always better than no documentation anyway. The github pages is using the just-the-docs theme and it automatically includes all .md files from So I'd have to make some tests to see what I can integrate these. Maybe the doxygen documentation could go to a subdirectory of matplotplusplus/docs/_config.yml Line 8 in d0ef918 |
Beta Was this translation helpful? Give feedback.
-
CMake has a built-in support for Doxygen, the powerful documentation generator.
We could add the additional CMake
option(BUILD_DOCS "Build Doxygen documentation" OFF)
and generate it at CI on demand or dump to some GitHub Pages.Doxygen also could be befriended with Sphinx, the Python-powered documentation generator with more modern Webpages generator - e.g. see the Kitware's blog post about Doxygen-Sphinx.
Beta Was this translation helpful? Give feedback.
All reactions