Exporting results in a custom XML would be nice too. I can imagine an XML result export wizard, where one defines the tag names and structure (a template), and SemmleCode automatically outputs the XML where the actual results are embedded based on the node template.
Something like this:
from ...
where ...
select c, n
==>
<root>
<results />
</root>
results =>
<result>
<c>{c}</c>
<n>{n}</n>
</result>
Something like XSLT

At a first stage, just enable exporting in ANY XML format, one always can write an XSLT and transform to any needed format
