Remove comment

This commit is contained in:
Jared He 2021-06-21 11:33:44 -04:00
parent e8fc840733
commit 199adf6d55
1 changed files with 1 additions and 2 deletions

View File

@ -58,8 +58,7 @@ const nodeChildrenToString = (nodeChildren) => {
const parseXML = (XML) => {
const xmlDoc = libxmljs.parseHtml(XML);
let eventdefsChildren = xmlDoc.get("//eventdefs").childNodes();
eventdefsChildren.forEach((eventItem) => {
// sometimes there's events that are commented out, hopefully this catches that
eventdefsChildren.forEach((eventItem) => {``
if (eventItem.type() === "element") {
const title = eventItem.attr("title").value();
const shortNodes = eventItem.get(".//short").childNodes();