paricafe/src/mfm/parse.ts

20 lines
460 B
TypeScript
Raw Normal View History

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