_micro_tricks.lua
local ggram = require("ggram")
GLOBAL_BOT = ggram("123456789:QWERTYUIOPASDFGHJKLZXCVBNM")
local bot = GLOBAL_BOT local chat_id = 123456
do
bot.reply(chat_id).text("<b>Bold text</b> sent out of context", "html")
bot.reply(chat_id).html("<b>Bold text</b> sent out of context")
bot.reply(chat_id)
.keyboard({{"Text Button 1", "Button 2"}}) .selective()
.markdown("*Bold* text with which buttons appear at the bottom of the chat")
end
do
bot.reply(chat_id).setParameter("protect_content", true).text("Message that cannot be forwarded")
end
ggram.idle()