mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-12-08 18:32:32 -05:00
started on multi server roles configuration
This commit is contained in:
17
cogs/utils/chat_formatting.py
Normal file
17
cogs/utils/chat_formatting.py
Normal file
@@ -0,0 +1,17 @@
|
||||
def bold(text):
|
||||
return "**"+str(text)+"**"
|
||||
|
||||
def italics(text):
|
||||
return "*"+str(text)+"*"
|
||||
|
||||
def strikethrough(text):
|
||||
return "~~"+str(text)+"~~"
|
||||
|
||||
def underline(text):
|
||||
return "__"+str(text)+"__"
|
||||
|
||||
def box(text):
|
||||
return "```"+str(text)+"```"
|
||||
|
||||
def inline(text):
|
||||
return "`"+str(text)+"`"
|
||||
Reference in New Issue
Block a user