1 2 3 4 5
from aiogram.types import Chat, User def mention(user: User | Chat) -> str: return f'<a href="tg://user?id={user.id}">{user.full_name}</a>'