Reputation: 343
I have a text like this. And I want to show it in doxygen documentation as it is. What type of command should I use.
Upvotes: 0
Views: 2158
Reputation: 692
If you don't mind the box you can use code{.unparsed}.
E.g.:
/// @code{.unparsed}
/// +---+---+
/// | a | b |
/// +---+---+
/// @endcode
Upvotes: 1
Reputation: 8395
You can use verbatim, endverbatim.
http://www.doxygen.nl/manual/commands.html#cmdverbatim
Upvotes: 2