Marked.js extension for Misskey-flavored Markdown
Go to file
Sol Fisher Romanoff 1dde5177ea
Add bundler
2022-07-08 23:51:13 +03:00
lib Add bundler 2022-07-08 23:51:13 +03:00
src Fix regex matching of MFM tag 2022-07-08 23:51:13 +03:00
test Fix regex matching of MFM tag 2022-07-08 23:51:13 +03:00
.editorconfig Initial commit 2022-07-08 11:32:20 +03:00
.eslintignore Add bundler 2022-07-08 23:51:13 +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
.woodpecker.yml Add bundler 2022-07-08 23:51:13 +03:00
LICENSE Initial commit 2022-07-08 11:32:20 +03:00
README.md Correct README to use _mfm_ class 2022-07-08 13:59:40 +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
package-lock.json Add bundler 2022-07-08 23:51:13 +03:00
package.json Add bundler 2022-07-08 23:51:13 +03:00
rollup.config.umd.js Add bundler 2022-07-08 23:51:13 +03:00

README.md

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="_mfm_x2_">beeg text</span></p>