mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
17 lines
302 B
Python
17 lines
302 B
Python
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)+"`" |