Strip HTML/XML Tags

Remove markup tags from text while keeping content

Input

Output

`); }); document.getElementById('clear-btn').addEventListener('click', () => { inputEditor.setValue(''); outputEditor.setValue(''); }); document.getElementById('copy-btn').addEventListener('click', async () => { const s = await DevTools.copyToClipboard(outputEditor.getValue()); DevTools.showStatus('status-container', s?'Copied!':'Failed', s?'success':'error'); });