UNPKG

markup-tools

Version:
11 lines (9 loc) 261 B
'use strict'; module.exports = function(text) { return String(text).replace( /([a-z\-_0-9\/\:\.]*\.(jpg|jpeg|png|gif|bmp|svg|tif|tiff)(?!["\)]))/gi, image => { return '<img src="' + image + '" />' + '<br/>'; } ); };