私は、Doxygenで生成されたライブラリドキュメントのセットを用意しています。結果のドキュメントの「例」タブの下に表示されます。これらのページにDoxygenタイプのマークアップを追加したいと思いますが、その方法を理解できません。すべてのマークアップコメントは削除され、Doxygen出力のどこにも表示されません。私の希望は、いくつかの説明的な段落と、おそらくユーザーが見ることができる一連のプログラム出力を含めることです。私の一時的な回避策は、このすべてをソースコードに非Doxygenコメントとして含めることです。このアプローチは機能しますが、私が望んでいたものではありません。先月の過程で、この問題を探索した後Doxygenにプログラムページなどのマークアップを追加するにはどうすればよいですか?
/**
* \brief ATTEMPTED DESCRIPTION
*
* I would like to include some kind of markup on the example page for
* this program. I link to it just fine from one of my library routines,
* the the Doxygen-generated example page just shows all of this verbatim.
*
* Is there any way to provide some kind of section where I can discuss
* the example program itself? And potentially provide sample output
* and the like? (I realize that doesn't make sense for "Hello World",
* but you get the idea.)
*/
#include <iostream>
int main (int argc, char *argv[])
{
std::cout << "Hello World" << std::endl ;
return 0 ;
}
をあなたは\スニペットコマンドを試してみましたか? – themagicalyang