Webcore and XML

Is there any XML Library that works with webcore?

Chuck

At this moment, there is not an XML library in Pascal code.
For now, you could invoke the JavaScript XML parsing functions from ASM blocks in the code:
https://www.w3schools.com/xml/xml_parser.asp

asm
  parser = new DOMParser();
  xmlDoc = parser.parseFromString(text,"text/xml");
end;