Marked.js extension for Misskey-flavored Markdown
Find a file
Sol Fisher Romanoff 3e53ff92c0
Add search MFM
2022-07-08 13:33:03 +03:00
src Add search MFM 2022-07-08 13:33:03 +03:00
test Add search MFM 2022-07-08 13:33:03 +03:00
.editorconfig Initial commit 2022-07-08 11:32:20 +03:00
.eslintrc.cjs Initial commit 2022-07-08 11:32:20 +03:00
.gitignore Initial commit 2022-07-08 11:32:20 +03:00
babel.config.json Initial commit 2022-07-08 11:32:20 +03:00
jest.config.js Initial commit 2022-07-08 11:32:20 +03:00
LICENSE Initial commit 2022-07-08 11:32:20 +03:00
package-lock.json Initial commit 2022-07-08 11:32:20 +03:00
package.json Initial commit 2022-07-08 11:32:20 +03:00
README.md Add README 2022-07-08 11:42:09 +03:00

marked-mfm

a Marked.js custom extension for Misskey-flavored Markdown.

this is a reimplementation of the original MFM parser, which was written from the ground up using PEG.js instead of as an extension of CommonMark, and therefore was not up to spec.

usage

const marked = require('marked')
const markedMfm = require('marked-mfm')

marked.use(markedMfm)
marked.parse('$[x2 beeg text]')
// <p><span style="display: inline-block" class="x2">beeg text</span></p>