JSFiddle - React, Tailwind, and code Playground
by isherwood
HTML
<div class="highlightStart">highlightStart</div>
Page content
<div class="highlightEnd">highlightEnd</div>
CSS
section {
border: 1px solid red;
}
div {
background-color: #eee;
}
JavaScript
$(document).ready(function () {
$('.highlightStart').nextUntil('.highlightEnd').andSelf().wrap('<section class="highlight"></section>');
$('.highlightStart, .highlightEnd').remove();
});