(str: string)
| 690 | |
| 691 | // 3. Decode HTML entities (using a minimal function) |
| 692 | function decodeHtmlEntities(str: string) { |
| 693 | const textarea = document.createElement("textarea") // Use built-in element |
| 694 | textarea.innerHTML = str |
| 695 | return textarea.value |
| 696 | } |
| 697 | const xmlContent = decodeHtmlEntities(encodedContent) |
| 698 | |
| 699 | // 4. Parse the XML content |