Skip to content

Instantly share code, notes, and snippets.

@AmirrezaNasiri
Last active January 8, 2025 08:16
Show Gist options
  • Save AmirrezaNasiri/d54057991bba84d400bb378a50291420 to your computer and use it in GitHub Desktop.
Save AmirrezaNasiri/d54057991bba84d400bb378a50291420 to your computer and use it in GitHub Desktop.
Telegram Share Button in HTML
<!--
This is a simple URL share button for Telegram application.
It's compatible with iOS/Android app, Telegram Desktop and uses its web mode for fallback.
-->
<a href="https://t.me/share/url?url={url_to_share}&text={caption_text}&to={phone_number}">
Share Me
</a>
<!--
Just replace {url_to_share}, {caption_text} and {phone_number} with your desired values.
Note that {caption_text} and {phone_number} are optional. You can remove those query parameters.
A working example:
<a href="https://t.me/share/url?url=http://amirreza.in&text=Find me here!">
Share Me
</a>
You can use both https://t.me and https://telegram.me as base URL.
-->
@pawlek
Copy link

pawlek commented Jun 5, 2024

thanks bro, working =)

@masguit42
Copy link

Can i make caption_text to be formatted as strikethrough?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment