I found this is an old question without get any replies in the year 2012 [1]
% cat foo.cpp
/**
* \mainpage
*
* \verbatim
* % foo --some-flag
* some output
* \endverbatim
*/
% doxygen - <<<'INPUT=foo.cpp'
Comes out (in html) as
|-----------------------|
| * % foo --some-flag |
| * some output |
| * |
|-----------------------|
You see the "*" in the output html? I think they should be removed as the what the @code and @endcode do, any ideas?
Thanks.
Asmwarrior
[1] Doxygen - Users - strip leading indentation of @verbatim..@endverbatim block - http://doxygen.10944.n7.nabble.com/strip-leading-indentation-of-verbatim-endverbatim-block-td925.html
|