[Doxygen-develop] xml encoding of @see seems bogus
Brought to you by:
dimitri
From: Cormac T. <ct...@ct...> - 2002-11-07 01:55:53
|
I have noticed that @see is encoded into xml as: <simplesect kind=">see"> <para> <ref refid="blahblah_1a22" kindref="member">foo()</ref> </para> </simplesect> Now, it is clearly illegal xml to have the > symbol in the literal ">see" on the first line. Is it safe to assume that the greater than symbol squeaked in by accident? Here is the offending line of code, in xmldocvisitor.cpp: void XmlDocVisitor::visitPre(DocSimpleSect *s) { m_t << "<simplesect kind=\">"; // <-- Error switch(s->type()) . . The offending line needs to have the greater-than removed: m_t << "<simplesect kind=\""; --Cormac Twomey |