Format instagram text with proper html link tag link on username, hashtag, and url
npm install instagram-formatter> Format instagram text to proper html link tag on username, hashtag, and URL
This is a fork of tweet-formatter from pveyes
#### NPM
npm install --save instagram-formatter
#### Bower
bower install --save instagram-formatter
#### Node.JS
``js
var instagramFormatter = require('instagram-formatter');
var instagram = 'some instagram text with @username and #hashtag or http://url.com';
var formattedInstagram = instagramFormatter(instagram);
console.log(formattedInstagram);
// outputs:
// some instagram text with @username
// and #hashtag
// or http://url.com
``
MIT