| 750 | return ''; | 750 | return ''; |
| 751 | } | 751 | } |
| 752 | | 752 | |
| 753 | const div = document.createElement('div'); | | |
| 754 | const html = converter.makeHtml(substituteParams(text)); | 753 | const html = converter.makeHtml(substituteParams(text)); |
| 755 | div.innerHTML = html; | 754 | const parsedDocument = new DOMParser().parseFromString(html, 'text/html'); |
| 756 | const styleElements = Array.from(div.querySelectorAll('style')); | 755 | const styleElements = Array.from(parsedDocument.querySelectorAll('style')); |
| 757 | return styleElements | 756 | return styleElements |
| 758 | .filter(s => s.textContent.trim().length > 0) | 757 | .filter(s => s.textContent.trim().length > 0) |
| 759 | .map(s => s.textContent.trim()) | 758 | .map(s => s.textContent.trim()) |