From bb5b518088dc81d434cebde8889230a2914506b3 Mon Sep 17 00:00:00 2001 From: Penelope Gomez / Pogmommy Date: Tue, 7 Feb 2023 13:45:29 -0700 Subject: [PATCH] Update README.md --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index ab66b22..82866ef 100644 --- a/README.md +++ b/README.md @@ -42,5 +42,19 @@ node ./TwitToMast.js [username] [tweet count] [debug level] - 2: The program will print what tasks it is working on and errors, as well as various other information necessary for troubleshooting. - Omit this argument for the program to run silently (no output on screen) +## How Types of Tweets are handled + +- Self Posts + - Preserves Text, links, and still images +- Quote Tweets + - Preserves Text, links, still images, and link to quoted tweet +- Retweets + - Retweets are not cross-posted at the moment +- Replies + - To self: + - Preserves Text, links, still images, but loses continuity (tweets are not stitched together in threads) + - To others: + - Replies to others are not cross-posted at the moment + ## Other important details - This program does not run on a loop on its own. If you need it to run automatically, you'll need to find a way to schedule the script to be executed periodically.