This repository contains the content that has been posted on X (Formerly twitter).
- Include a file with extension
.tweet
in thetweets
folder. - If the tweet contains images, include them in the
media
folder and reference them in the tweet file (explanation below). - Create a PR and the tweet will be posted when the PR is merged.
Copy and paste one of the following examples into your .tweet
file to quickly get started with a tweet.
This creates a simple tweet with only text, just throw the text in the tweet file.
I love to code! #javascript #typescript
If the tweet contains images, include them in the media
folder and reference them in the tweet file.
---
media:
- file: cat.jpg
- file: dog.jpg
---
Here are some cute animals!
What is your favorite color?
( ) Red
( ) Blue
( ) Green
If you want to reply to another tweet, include the reply
item with the tweet link that you wish to reply to.
---
reply: https://twitter.com/whatever/status/1409601188362809349
---
@whatever I love your work!
If you want to quote-retweet another tweet, include the retweet
item with the tweet link that you wish to quote-retweet.
If you'd prefer to just retweet without quoting, don't provide a tweet body after the the retweet
item.
---
retweet: https://twitter.com/what-ever/status/1409601188362809349
---
quote-retweet is awesome!
Go to initial-setup for instructions on how to set up the project.