From 4211f72b9d3c233b4a26d7cc739fdabb64270ae4 Mon Sep 17 00:00:00 2001 From: mctaylors Date: Wed, 6 Nov 2024 23:36:24 +0300 Subject: [PATCH] timestamp: Add chat syntax table Signed-off-by: mctaylors --- client.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/client.py b/client.py index 1f696aa..4bab57c 100644 --- a/client.py +++ b/client.py @@ -47,7 +47,16 @@ class Client(commands.CommandsClient): async def timestamp(self, ctx: commands.Context): """Shows current timestamp""" message = trunc(time()) - await ctx.send(f"**{message}** ") + await ctx.send(f"## {message}\n" + f"| Chat syntax | Result |\n" + f"| --- | --- |\n" + f"| `` | |\n" + f"| `` | |\n" + f"| `` | |\n" + f"| `` | |\n" + f"| `` | |\n" + f"| `` | |\n" + f"| `` | |") @commands.command() async def self(self, ctx: commands.Context):