No description
Find a file
2021-03-22 19:50:35 +09:00
.github/workflows Create node.js.yml 2021-03-22 02:17:28 +09:00
src Unused node.props and node.children are not generated. 2021-03-22 19:42:54 +09:00
test Unused node.props and node.children are not generated. 2021-03-22 19:42:54 +09:00
.editorconfig add editorconfig 2021-03-22 19:50:35 +09:00
.gitignore update iroiro 2021-03-17 15:24:33 +09:00
LICENSE update iroiro 2020-02-16 23:27:25 +09:00
package.json v0.6.0 2021-03-20 20:43:57 +09:00
README.md 🐱 2021-03-21 00:36:54 +09:00
tsconfig.json update iroiro 2021-03-17 15:24:33 +09:00

rosee

Description

A MFM parser implementation with PEG.js

Installation

npm i rosee

Usage

TypeScript:

import * as mfm from 'rosee';

const input =
`<center>
Hello [tada everynyan! 🎉]

I'm @ai, An bot of misskey!

https://github.com/syuilo/ai
</center>`;

// parse a MFM text
const result = mfm.parse(input);

// parse a MFM plain text
const plainResult = mfm.parsePlain('I like the hot soup :soup:');

Usage (Repository)

1. Clone

git clone https://github.com/marihachi/rosee.git

2. Install packages

cd rosee
npm i

3. Build

npm run build

Use the interactive CLI parser

npm run parse

License

This software is released under the MIT License.