Reading WWN 284 I noticed the following line:
stabilizing for release &.
And sure enough the source XML is buggy:
stabilizing for release &<g&>.
I believe the intent was the following to deal with the double parsing:
stabilizing for release &lt;g&gt;.
But really this double parsing is a major pain. Can't we get rid of it? Because it's causing a lot of bugs:
$ egrep "<.*>" wwn/*.sgml | grep -v "who=" | wc -l 190
And it's not just missing grins either. For instance in WWN 125:
gdb <gdb remote protocol> winedbg <Win32 debug API> wineserver
and all the reader sees is:
gdb winedbg wineserver
which is totally wrong of course.
And in WWN 149:
#include <comcat.h> <br /> #include <oaidl.h><br /> #include <objbase.h><br /> #include <objidl.h><br />
...
all the reader sees is:
#include #include #include #include
...
Not very informative!