JSFiddle - React, Tailwind, and code Playground
by booktu8
HTML
<div id="content">
<div>
<dl>
<dt>title</dt>
<dd>
<b>hello</b><span>world!</span>
</dd>
</dl>
</div>
</div>
JavaScript
var con = document.querySelector('#content')
var html = con.innerHTML
html = html.replace(/<(\w+)>,'$1')
console.log(html)
/* con.innerHTML = html */