metalsmith-tweet-embed
Converts Twitter status URLS to embedded Twitter statuses
Installation
With npm:
npm install metalsmith-tweet-embed
With yarn:
yarn add metalsmith-tweet-embed
Usage
var metalsmith = ;var tweetEmbed = ; ;
Options
You can limit which status links get converted by passing in pattern
as a param.
var metalsmith = ;var tweetEmbed = ; ;
You can also customize the options of the embed by using any options supported by the Twitter Status oEmbed API.
These options can be set directly from the plugin, or via frontmatter.
From Frontmatter
---title: Look at this awesome pagetwitter: omit_script: false align: center--- This is my markdown content https://twitter.com/BillGates/status/7957453193
From Plugin
var metalsmith = ;var tweetEmbed = ; ;
Any embed options set via frontmatter will overwrite options set from the plugin options.