egirlskey/src/mfm/parse.ts

12 lines
357 B
TypeScript
Raw Normal View History

2019-01-30 04:47:58 +00:00
import parser, { plainParser, MfmForest } from './parser';
import { normalize } from './normalize';
export default (source: string, plainText = false): MfmForest => {
if (source == null || source == '') {
return null;
}
const raw = plainText ? plainParser.root.tryParse(source) : parser.root.tryParse(source) as MfmForest;
2019-01-30 04:47:58 +00:00
return normalize(raw);
};