jormungandr-bite/src/mfm/parse.ts

20 lines
488 B
TypeScript
Raw Normal View History

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