mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-21 18:18:06 +09:00
50a45ce1a1
* Add angle bracket covered url syntax to mfm * Fix path * Fix match * Fix index
20 lines
460 B
TypeScript
20 lines
460 B
TypeScript
import { mfmLanguage } from './language';
|
|
import { MfmForest } from './prelude';
|
|
import { normalize } from './normalize';
|
|
|
|
export function parse(source: string): MfmForest {
|
|
if (source == null || source == '') {
|
|
return null;
|
|
}
|
|
|
|
return normalize(mfmLanguage.root.tryParse(source));
|
|
}
|
|
|
|
export function parsePlain(source: string): MfmForest {
|
|
if (source == null || source == '') {
|
|
return null;
|
|
}
|
|
|
|
return normalize(mfmLanguage.plain.tryParse(source));
|
|
}
|