## Feature ✨
npm install remarkable-plugin-tweet-shareThis is plugin for remarkable.
This plugin will allow you to share tweet in markdown with tiny code and without script to embed tweet, like
``markdown`
!tweet[](tweet url)
For Example,
`markdown`
!tweet()[https://twitter.com/Shinyaigeek/status/1363426871950536705?s=20]
above markdown will be parsed into
and rendered as
.
!tweetimg's alt
`cli`
yarn add remarkable-plugin-tweet-share remarkable -D
and
`typescript
import { Remarkable } from "remarkable";
import { tweetMacroPlugin } from "remarkable-plugin-tweet-share";
const md = new Remarkable();
md.use(tweetMacroPlugin);
md.render(html);
``
MIT