From 26565acdab1a77d70289225bfc972c053714db2b Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Wed, 27 Jan 2016 08:03:41 -0500 Subject: [PATCH] render links --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 306d1aa..76c924a 100755 --- a/index.js +++ b/index.js @@ -55,6 +55,7 @@ module.exports = function(input){ } } html += popHTMLStack(-1, previous_line_num_tabs); + html = html.replace(/(http:\/\/[^\s<]*)/g, '$1'); previous_line_num_tabs = -1; return html }