misskey/src/mfm/parse.ts

20 lines
458 B
TypeScript
Raw Normal View History

2019-01-30 00:04:49 -08:00
import { mfmLanguage } from './language';
2019-01-29 21:51:30 -08:00
import { MfmForest } from './types';
2019-01-29 20:47:58 -08:00
import { normalize } from './normalize';
2019-01-29 23:56:27 -08:00
export function parse(source: string): MfmForest {
if (source == null || source == '') {
return null;
}
2019-01-29 23:56:27 -08:00
return normalize(mfmLanguage.root.tryParse(source));
}
2019-01-29 22:27:54 -08:00
export function parsePlain(source: string): MfmForest {
if (source == null || source == '') {
return null;
}
2019-01-29 23:56:27 -08:00
return normalize(mfmLanguage.plain.tryParse(source));
2019-01-29 22:27:54 -08:00
}