I am using Doxygen for my C++ project which will be hosted in github.
I want to include the list of methods of a class in the readme file and I am thinking of ways to automate it.
I will include the entire generated html pages in the repo, but thought it would be nice to give an idea of the API, by including the members of the main class in the readme file.
So far I couldn't find a way to generate markdown files. My next idea was to write some shell script that will automatically copy the member list and included it in the readme file and for that I need to generate the list of member functions of a class separately.
Is it possible to configure doxygen to just output the list of members of a class separately?