http://bentasker.i2p/posts/documentation/general/adding-a-share-on-mastodon-button-to-a-website.html
text=" + src;
// Open a window on the share page
window.open(url, '_blank');
} The function takes the share text from an attribute called data-src on the clicked element, so could be driven by something as simple as <a
onclick="MastodonShare(this);"
data-src="My site&url=https://www.bentasker.co.uk/"
>Share on Mastodon</a> After clicking, the user receives a prompt asking them to provide their mastodon domain Once they've submitted it, a new...