JSFiddle - React, Tailwind, and code Playground
HTML
<p>Give your work the edge with this pencil.</p>
<p>Awesome design, and chunky gold finish.</p>
<p>Get the look.</p>
JavaScript
$(function() {
$('p').each(function() {
$(this).contents().unwrap().wrap('<li>');
});
$('li').wrapAll('<ul></ul>');
});