Issue
I've created a bot in telegram
I want to send bold and italic text with HTML page to bot
My HTML code is:
<html>
<head><title>Telegram</title></head>
<body>
<form method="GET" action="https://api.telegram.org/bot(token)/sendMessage">
<input type="hidden" name="chat_id" value="@testadminch">
<input type="hidden" name="parse_mod" value="markdown">
<textarea name="text"></textarea>
<input type="submit" value="Submit">
</form>
</body>
</html>
If I send *bold* the output should be bold but it doesn't work
Solution
To send bold:
- Set the
parse_modetomarkdownand send*bold* - Set the
parse_modetohtmland send<b>bold</b>
To send italic:
- Set the
parse_modetomarkdownand send_italic_ - Set the
parse_modetohtmland send<i>italic</i>
Answered By - Maak
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.