JSFiddle - React, Tailwind, and code Playground
by tonytlwu
HTML
<span>Span Text</span>
<strong>What about me?</strong>
<span>Another One</span>
JavaScript
$( "span" ).wrapInner(function () {
return '<table><thead><tr><td><div class="header-space"> </div></td></tr></thead><tbody><tr><td><div class="content">' + this.outerHTML + '</div></td></tr></tbody><tfoot><tr><td><div class="footer-space"> </div></td></tr></tfoot></table>';
});