diff --git a/src/services/XmlTreeService.ts b/src/services/XmlTreeService.ts index 343753b..0b4e86f 100644 --- a/src/services/XmlTreeService.ts +++ b/src/services/XmlTreeService.ts @@ -139,6 +139,7 @@ export class XmlTreeService { /* 1px */ } + `; @@ -165,12 +166,12 @@ export class XmlTreeService { if (node.attributes) { for (let i = 0; i < node.attributes.length; i++) { - html += `
  • ${node.attributes.item(i).localName} = '${node.attributes.item(i).value}'
  • `; + html += `
  • ${node.attributes.item(i).localName} = '${node.attributes.item(i).value}'
  • `; } } if (!node.childNodes && node.textContent) { - html += `
  • ${node.textContent}
  • `; + html += `
  • ${node.textContent}
  • `; } if (node.childNodes) {