egirlskey/src/mfm/parse.ts

13 lines
362 B
TypeScript
Raw Normal View History

2019-01-30 06:12:48 +00:00
import parser 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';
export default (source: string, plainText = false): MfmForest => {
if (source == null || source == '') {
return null;
}
2019-01-30 06:12:48 +00:00
const raw = plainText ? parser.plain.tryParse(source) : parser.root.tryParse(source) as MfmForest;
2019-01-30 04:47:58 +00:00
return normalize(raw);
};