Skip to content

Instantly share code, notes, and snippets.

@Aymkdn
Created June 5, 2018 10:08
Show Gist options
  • Select an option

  • Save Aymkdn/4bfe85186f5dcf14b058048b23ae2e1e to your computer and use it in GitHub Desktop.

Select an option

Save Aymkdn/4bfe85186f5dcf14b058048b23ae2e1e to your computer and use it in GitHub Desktop.

Revisions

  1. Aymkdn created this gist Jun 5, 2018.
    8 changes: 8 additions & 0 deletions linkify
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,8 @@
    var urlRegex =/(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig;
    function linkify(text, safeText) {
    safeText = (safeText===false? false : true);
    if (safeText) text=escapeHtml(text);
    return text.replace(urlRegex, function(url) {
    return '<a href="' + url + '">' + url + '</a>';
    });
    }