2021-04-18 11:11:05 +00:00
|
|
|
|
## parse API
|
|
|
|
|
入力文字列からノードツリーを生成します。
|
|
|
|
|
全てのMFM構文を利用可能です。
|
|
|
|
|
|
|
|
|
|
例:
|
|
|
|
|
```ts
|
2021-10-02 01:27:05 +00:00
|
|
|
|
const nodes = mfm.parse('hello $[tada world]');
|
2021-04-18 11:11:05 +00:00
|
|
|
|
console.log(JSON.stringify(nodes));
|
|
|
|
|
// => "[{"type":"text","props":{"text":"hello "}},{"type":"fn","props":{"name":"tada","args":{}},"children":[{"type":"text","props":{"text":"world"}}]}]"
|
|
|
|
|
```
|
|
|
|
|
|
2021-10-02 01:27:05 +00:00
|
|
|
|
### 利用可能なMFM関数のリストを設定する
|
2021-10-02 01:30:44 +00:00
|
|
|
|
MFM関数の名前をホワイトリストに登録して、登録されたMFM関数以外を通常のテキストノードとして解釈するように設定できます。
|
|
|
|
|
デフォルトではすべてのMFM関数名を受け入れるように設定されています。
|
2021-10-02 01:27:05 +00:00
|
|
|
|
|
2021-10-02 01:30:02 +00:00
|
|
|
|
例:
|
2021-10-02 01:27:05 +00:00
|
|
|
|
```ts
|
|
|
|
|
const nodes = mfm.parse('hello $[tada world]', { fnNameList: ['tada', 'spin'] });
|
|
|
|
|
console.log(JSON.stringify(nodes));
|
|
|
|
|
// => "[{"type":"text","props":{"text":"hello "}},{"type":"fn","props":{"name":"tada","args":{}},"children":[{"type":"text","props":{"text":"world"}}]}]"
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```ts
|
|
|
|
|
const nodes = mfm.parse('hello $[pope world]', { fnNameList: ['tada', 'spin'] });
|
|
|
|
|
console.log(JSON.stringify(nodes));
|
|
|
|
|
// => "[{"type":"text","props":{"text":"hello $[pope world]"}}]"
|
|
|
|
|
```
|
|
|
|
|
|
2021-04-18 11:11:05 +00:00
|
|
|
|
## parsePlain API
|
|
|
|
|
入力文字列からノードツリーを生成します。
|
|
|
|
|
絵文字コードとUnicode絵文字を利用可能です。
|
|
|
|
|
|
|
|
|
|
例:
|
|
|
|
|
```ts
|
|
|
|
|
const nodes = mfm.parsePlain('Hello :surprised_ai:');
|
|
|
|
|
console.log(JSON.stringify(nodes));
|
|
|
|
|
// => "[{"type":"text","props":{"text":"Hello "}},{"type":"emojiCode","props":{"name":"surprised_ai"}}]"
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## toString API
|
|
|
|
|
ノードツリーからMFM文字列を生成します。
|
|
|
|
|
|
|
|
|
|
例:
|
|
|
|
|
```ts
|
2021-10-02 01:27:05 +00:00
|
|
|
|
const nodes = mfm.parse('hello $[tada world]');
|
2021-04-18 11:11:05 +00:00
|
|
|
|
const output = mfm.toString(nodes);
|
2021-10-02 03:46:28 +00:00
|
|
|
|
console.log(output); // => "hello $[tada world]"
|
2021-04-18 11:11:05 +00:00
|
|
|
|
```
|
|
|
|
|
※元の文字列とtoString APIで出力される文字列の同一性は保障されません。
|
|
|
|
|
|
|
|
|
|
## inspect API
|
|
|
|
|
ノードツリーの全ノードに指定された関数を適用します。
|
|
|
|
|
|
|
|
|
|
例:
|
|
|
|
|
```ts
|
|
|
|
|
mfm.inspect(nodes, node => {
|
|
|
|
|
if (node.type == 'text') {
|
|
|
|
|
node.props.text = node.props.text.replace(/Good morning/g, 'Hello');
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## extract API
|
|
|
|
|
ブール値を返す関数を渡してノードを抽出します。
|
|
|
|
|
このAPIはノードツリーを再帰的に探索します。
|
|
|
|
|
|
|
|
|
|
例:
|
|
|
|
|
```ts
|
|
|
|
|
mfm.extract(nodes, (node) => {
|
|
|
|
|
return (node.type === 'emojiCode');
|
|
|
|
|
});
|
|
|
|
|
```
|