JSFiddle - React, Tailwind, and code Playground

HTML

<article class="tweet">Some users may have experienced issues accessing http://t.co/zDdcbPNfnU on @Firefox 22+. We've reached out to Mozilla and it's now resolved.</article>
<article class="tweet">The issue with viewing photos is now resolved. Thanks for your patience!</article>

JavaScript

$('article.tweet').each(function () {
        var linkHref = $(this).html().replace(/http:\/\/\S+/g, function (match) {
            return "<a href='" + match + "'>" + match + "</a>";
        });
        $(this).html(linkHref);
    });