JSFiddle - React, Tailwind, and code Playground
by ipr101
HTML
<p>
@<a href="#">Wiki Tiki</a>
<br>
<br>
This would be where the person would say something. // I want to start here
<br>
<br>
This is even more text.
</p>
JavaScript
$("p").contents().each(function() {
if (this.nodeType == 3 && this.nodeValue.indexOf("This would be") > -1) return false;
$(this).remove()
})