JSFiddle - React, Tailwind, and code Playground

by lollero

HTML

<div class="content">Lorem ipsum ---- dolor sit amet.</div>
<div class="content">Lorem ---- ipsum ---- dolor sit amet.</div>

CSS

p { border: 1px solid green; }

JavaScript

var divider = '----',
    content = '.content';

var with_dividers = $(content+':contains("'+ divider +'")');


console.log( with_dividers )

with_dividers.html(function( i,htm ) {
    return '<p>' + htm.split( divider ).join('</p><p>') + '</p>';
});