JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5
  • Score
    100M100P100Q43371F
  • License MIT

Use the Twitter API return data to convert plain-text back into twitter-ready markup

Package Exports

  • tweet-patch

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (tweet-patch) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

tweet-patch

Build Status

Use the Twitter API return data to convert plain-text back into twitter-ready markup

This module will take the JSON data returned to you by the Twitter API, and use its entities.hashtags, entities.urls and entities.user_mentions to rebuild the plain-text tweet back into twitter-ready markup.

Usage

var tweetPatch = require('tweet-patch');

// Pass in the returned tweet data, and get twitter-ready HTML in return
tweetPatch( { text:'@SomeUser, go check out this #awesome #thing http://t.co/a01234!' } )
/* =>
    <a href="https://twitter.com/SomeUser">@SomeUser</a> go, check out this 
    <a href="https://twitter.com/hashtag/awesome">#awesome</a> 
    <a href="https://twitter.com/hashtag/thing">#thing</a> 
    <a href="http://t.co/a01234">http://t.co/a01234</a>!
*/

License

MIT @ Michael Wuergler