sharkey/src/mfm/parse.ts

20 lines
490 B
TypeScript
Raw Normal View History

2019-01-30 17:04:49 +09:00
import { mfmLanguage } from './language';
import { MfmForest } from './prelude';
2019-01-30 13:47:58 +09:00
import { normalize } from './normalize';
export function parse(source: string | null): MfmForest | null {
2020-04-04 08:46:54 +09:00
if (source == null || source === '') {
return null;
}
2019-01-30 16:56:27 +09:00
return normalize(mfmLanguage.root.tryParse(source));
}
2019-01-30 15:27:54 +09:00
export function parsePlain(source: string | null): MfmForest | null {
2020-04-04 08:46:54 +09:00
if (source == null || source === '') {
2019-01-30 15:27:54 +09:00
return null;
}
2019-01-30 16:56:27 +09:00
return normalize(mfmLanguage.plain.tryParse(source));
2019-01-30 15:27:54 +09:00
}