Section titled FormattersFormatters
discord.js provides the @discordjs/formatters package which contains a variety of utilities you can use when writing your Discord bot.
Section titled Basic MarkdownBasic Markdown
These functions format strings into all the different markdown styles supported by Discord.
Section titled LinksLinks
There are also two functions to format hyperlinks. hyperlink()
will format the URL into a masked markdown link, and hideLinkEmbed()
will wrap the URL in <>
, preventing it from embedding.
Section titled Code blocksCode blocks
You can use inlineCode()
and codeBlock()
to turn a string into an inline code block or a regular code block with or without syntax highlighting.
Section titled TimestampsTimestamps
With time()
, you can format Unix timestamps and dates into a Discord time string.
Section titled MentionsMentions
userMention()
, channelMention()
, and roleMention()
all exist to format Snowflakes into mentions.