示例#1
0
 async def fullwidth(self, ctx: DogbotContext, *, text: clean_content):
     """AESTHETIC"""
     await ctx.send(text.upper().translate(FW_TRANSLATE))
示例#2
0
 async def upper(self, ctx, *, message: commands.clean_content):
     message = message.upper()
     await ctx.send(message)
示例#3
0
文件: text.py 项目: hyarsan/YukikoBot
    async def upper(self, ctx, *, text: commands.clean_content):
        """Outputs text in uppercase letters."""

        output = await commands.clean_content().convert(ctx, text.upper())
        await ctx.send(output)