@odiffey/discord-markdown
TypeScript icon, indicating that this package has built-in type declarations

3.1.1 • Public • Published

discord-markdown

A markdown parser for Discord messages.

This package is a fork of discord-markdown by brussell98, rewritten in TypeScript and actively maintained.

Using

npm install @odiffey/discord-markdown
yarn add @odiffey/discord-markdown

For browser use, import dist/discord-markdown.min.js

import { parser, htmlOutput, toHTML } = from 'discord-markdown';

console.log(toHTML('This **is** a __test__'));
// => This <strong>is</strong> a <u>test</u>

Fenced codeblocks will include highlight.js tags and classes.

Options

import { toHTML } = from 'discord-markdown';
toHTML('This **is** a __test__', options);

options is an object with the following properties (all are optional):

  • embed: Boolean (default: false), if it should parse embed contents (rules are slightly different)
  • escapeHTML: Boolean (default: true), if it should escape HTML
  • discordOnly: Boolean (default: false), if it should only parse the discord-specific stuff
  • discordCallback: Object, callbacks used for discord parsing. Each receive an object with different properties, and are expected to return an HTML escaped string
    • user: (id: Number) User mentions "@someperson"
    • channel: (id: Number) Channel mentions "#somechannel"
    • role: (id: Number) Role mentions "@somerole"
    • everyone: () Everyone mention "@everyone"
    • here: () Here mention "@here"
    • slash: (name: String, id: Number) Slash command reference "</somecommand:someid>"
    • timestamp: (timestamp: Number, style: String|undefined) Relative timestamp reference "<t:sometimestamp:somestyle>"
  • cssModuleNames: Object, maps CSS class names to CSS module class names

Mention and Emoji Handling

Using the discordCallback option you can define custom functions to handle parsing mention and emoji content. You can use these to turn IDs into names.

Example:

import { toHTML } = from 'discord-markdown';
toHTML('This is a mention for <@95286900801146880>', {
	discordCallback: {
		user: node => '@' + users[node.id];
	}
}); // -> This is a mention for @Brussell

Customizing

It is possible to change the rules used by discord-markdown. Take a look at the code to see how to create your own modified rule set.

Contributing

Find an inconsistency? File an issue or submit a pull request with the fix and updated test(s).

Package Sidebar

Install

npm i @odiffey/discord-markdown

Weekly Downloads

0

Version

3.1.1

License

MIT

Unpacked Size

2.73 MB

Total Files

33

Last publish

Collaborators

  • odiffey