https://github.com/shinyaigeek/remarkable-plugin-tweet-share
This is plugin for remarkable to share tweet as a screenshot with tiny code
https://github.com/shinyaigeek/remarkable-plugin-tweet-share
markdown md remarkable remarkable-plugin
Last synced: about 1 year ago
JSON representation
This is plugin for remarkable to share tweet as a screenshot with tiny code
- Host: GitHub
- URL: https://github.com/shinyaigeek/remarkable-plugin-tweet-share
- Owner: Shinyaigeek
- License: mit
- Created: 2021-02-21T05:03:04.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-06-17T22:24:05.000Z (almost 2 years ago)
- Last Synced: 2025-04-20T01:21:24.607Z (about 1 year ago)
- Topics: markdown, md, remarkable, remarkable-plugin
- Language: TypeScript
- Homepage:
- Size: 471 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Remarkable plugin tweet share
## Feature ✨
This is plugin for [remarkable](https://github.com/jonschlinkert/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
.
## Usage
`!tweet[img's alt](tweet url)`
```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);
```
## LICENSE
MIT