I am new to nimrod and I didn't find a way to submit it at github without a login for github, so I post it here:
There is a small bug in examples/htmlrefs.nim as of 2012-06-04.
It finds 0 links in nimrods own Manual.html (because it only finds <a href=someref...> and it doesn't find <a class=someclass href=someref...>).
This patch fixed it for me:
29c29 < if x.kind == xmlAttribute: --- > while x.kind == xmlAttribute: 46a47,48 > else: > x.next()