I want to include a literal HTML element in a Doxygen comment. Something like this:
/// This function skips all <li> elements
If I write it like that, the <li>
is passed to the HTML output, which is obviously not what I want.
Instead, I can write this:
/// This function skips all <li> elements
This works fine in the HTML generated by Doxygen, but now the comment in the source code itself is rather illegible.
So it looks like I have to choose between legibility in the generated documentation or in the source code.
Is that really the case, or is there a way to force Doxygen to automatically turn all <blabla>
into <blabla>
?