You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ci/woodpecker/push/woodpecker Pipeline was successful
Details
|
10 months ago | |
---|---|---|
docs | 11 months ago | |
lib | 10 months ago | |
src | 10 months ago | |
test | 10 months ago | |
.editorconfig | 11 months ago | |
.eslintignore | 11 months ago | |
.eslintrc.cjs | 11 months ago | |
.gitignore | 11 months ago | |
.woodpecker.yml | 11 months ago | |
LICENSE | 11 months ago | |
README.md | 10 months ago | |
babel.config.json | 11 months ago | |
jest.config.js | 11 months ago | |
package-lock.json | 11 months ago | |
package.json | 10 months ago | |
rollup.config.umd.js | 11 months ago |
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.
this extension is mostly compatible with the original, except it only implements $[tags]
. mentions, hashtags and the search
markup are out of scope.
usage
const marked = require('marked')
const markedMfm = require('marked-mfm')
marked.use(markedMfm)
marked.parse('$[x2 beeg text]')
// <p><span class="mfm _mfm_x2_" >beeg text</span></p>
there is also an interactive CLI:
$ npm run dingus
marked-mfm interactive parser
version 0.0.0
> $[x2 beeg text]
<p><span class="mfm _mfm_x2_" >beeg text</span></p>
you should use it to figure out whether a bug is with marked-mfm or with the frontend it's used on.
contributing
development discussion takes place on #mfm
. contribute by sending pull requests, or patches to my public inbox.