social media crossposting tool. 3rd time's the charm
mastodon misskey crossposting bluesky

change: wrap href in parenthesis when posting to plaintext masto

zenfyr.dev aa8754a8 bd2a1fc7

verified
Changed files
+1 -1
mastodon
+1 -1
mastodon/output.py
···
p_text += token.href
else:
if self.text_format == 'text/plain':
-
p_text += f'{token.label}: {token.href}'
+
p_text += f'{token.label} ({token.href})'
elif self.text_format in {'text/x.misskeymarkdown', 'text/markdown'}:
p_text += f'[{token.label}]({token.href})'
else: