Rishitha Minol
Rishitha Minol

Reputation: 343

Doxygen how to show a text as it is?

enter image description here

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

Answers (2)

rtrrtr
rtrrtr

Reputation: 692

If you don't mind the box you can use code{.unparsed}.

E.g.:

/// @code{.unparsed}
/// +---+---+
/// | a | b |
/// +---+---+
/// @endcode

Upvotes: 1

Marc Alff
Marc Alff

Reputation: 8395

You can use verbatim, endverbatim.

http://www.doxygen.nl/manual/commands.html#cmdverbatim

Upvotes: 2

Related Questions