Added examples for formatting

This commit is contained in:
coder2020official 2022-05-01 00:58:06 +05:00
parent 191164cba0
commit 532011138c
2 changed files with 103 additions and 0 deletions

View File

@ -0,0 +1,52 @@
from telebot.async_telebot import AsyncTeleBot
from telebot import formatting
bot = AsyncTeleBot('token')
@bot.message_handler(commands=['start'])
async def start_message(message):
await bot.send_message(
message.chat.id,
# function which connects all strings
formatting.format_text(
formatting.mbold(message.from_user.first_name, escape=True), # pass escape=True to escape special characters
formatting.mitalic(message.from_user.first_name, escape=True),
formatting.munderline(message.from_user.first_name, escape=True),
formatting.mstrikethrough(message.from_user.first_name, escape=True),
formatting.mcode(message.from_user.first_name, escape=True),
separator=" " # separator separates all strings
),
parse_mode='MarkdownV2'
)
# just a bold text using markdownv2
await bot.send_message(
message.chat.id,
formatting.mbold(message.from_user.first_name, escape=True),
parse_mode='MarkdownV2'
)
# html
await bot.send_message(
message.chat.id,
formatting.format_text(
formatting.hbold(message.from_user.first_name, escape=True),
formatting.hitalic(message.from_user.first_name, escape=True),
formatting.hunderline(message.from_user.first_name, escape=True),
formatting.hstrikethrough(message.from_user.first_name, escape=True),
formatting.hcode(message.from_user.first_name, escape=True),
separator=" "
),
parse_mode='HTML'
)
# just a bold text in html
await bot.send_message(
message.chat.id,
formatting.hbold(message.from_user.first_name, escape=True),
parse_mode='HTML'
)
import asyncio
asyncio.run(bot.polling())

View File

@ -0,0 +1,51 @@
from telebot import TeleBot
from telebot import formatting
bot = TeleBot('TOKEN')
@bot.message_handler(commands=['start'])
def start_message(message):
bot.send_message(
message.chat.id,
# function which connects all strings
formatting.format_text(
formatting.mbold(message.from_user.first_name, escape=True), # pass escape=True to escape special characters
formatting.mitalic(message.from_user.first_name, escape=True),
formatting.munderline(message.from_user.first_name, escape=True),
formatting.mstrikethrough(message.from_user.first_name, escape=True),
formatting.mcode(message.from_user.first_name, escape=True),
separator=" " # separator separates all strings
),
parse_mode='MarkdownV2'
)
# just a bold text using markdownv2
bot.send_message(
message.chat.id,
formatting.mbold(message.from_user.first_name, escape=True),
parse_mode='MarkdownV2'
)
# html
bot.send_message(
message.chat.id,
formatting.format_text(
formatting.hbold(message.from_user.first_name, escape=True),
formatting.hitalic(message.from_user.first_name, escape=True),
formatting.hunderline(message.from_user.first_name, escape=True),
formatting.hstrikethrough(message.from_user.first_name, escape=True),
formatting.hcode(message.from_user.first_name, escape=True),
separator=" "
),
parse_mode='HTML'
)
# just a bold text in html
bot.send_message(
message.chat.id,
formatting.hbold(message.from_user.first_name, escape=True),
parse_mode='HTML'
)
bot.infinity_polling()