From 5b647e09378d7879ae056939d0b837aa1451fd8f Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Sat, 25 Jan 2025 08:08:02 -0500 Subject: [PATCH] buttfeed: Use markdown that works better in Manyverse. --- tools/buttfeed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/buttfeed.py b/tools/buttfeed.py index 823784e7..69a8b81a 100755 --- a/tools/buttfeed.py +++ b/tools/buttfeed.py @@ -59,7 +59,7 @@ cutoff = state.get('last_update') or (time.time() - 2 * 7 * 24 * 60 * 60) entries = [entry for entry in get_entries() if entry[0] > cutoff] if entries: - text = '\n'.join([f' * [{entry[1]}] [{entry[3]}]({entry[2]})' for entry in entries]) + text = '\n'.join([f' * **{entry[1]}** [{entry[3]}]({entry[2]})' for entry in entries]) state['last_update'] = entries[0][0] if args.state_file: content = json.dumps({'type': 'post', 'text': text, 'mentions': []})