I am working with some legacy code for which I am creating XML documentation using doxygen. I have two problems with this code. First it contains invalid comments. For instance:
enum E
{
E1, E2, E3;
};
This causes doxygen to generate output for a struct with a name Ethat is not in the code. My second problem is with HTML links. For example, for the following input:
struct S
{
int i;
}
the output generated by doxygen is not valid XML because the &link is not properly escaped.
For the above reasons, I would like doxygen to ignore some comments. Is it possible?
source
share