Utworzyłem bota w telegramiewysłać tekst pogrubiony i pochylony na telegramu bot z html
chcę wysłać tekst pogrubiony i pochylony ze strony HTML do bot
Moje kod HTML jest:
<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>
Jeśli wyślę *bold*
wyjście powinno być bold ale to nie działa
ok napisałem źle –