Red-DiscordBot/cogs/utils/chat_formatting.py
2016-02-26 23:47:30 -05:00

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)+"`"