egirlskey/src/mfm/parse.ts

20 lines
456 B
TypeScript
Raw Normal View History

2019-01-30 07:56:27 +00:00
import { mfmLanguage } from './parser';
2019-01-30 05:51:30 +00:00
import { MfmForest } from './types';
2019-01-30 04:47:58 +00:00
import { normalize } from './normalize';
2019-01-30 07:56:27 +00:00
export function parse(source: string): MfmForest {
if (source == null || source == '') {
return null;
}
2019-01-30 07:56:27 +00:00
return normalize(mfmLanguage.root.tryParse(source));
}
2019-01-30 06:27:54 +00:00
export function parsePlain(source: string): MfmForest {
if (source == null || source == '') {
return null;
}
2019-01-30 07:56:27 +00:00
return normalize(mfmLanguage.plain.tryParse(source));
2019-01-30 06:27:54 +00:00
}