sharkey/src/mfm/parse.ts

13 lines
383 B
TypeScript
Raw Normal View History

2019-01-30 14:51:30 +09:00
import parser, { plainParser } from './parser';
import { MfmForest } from './types';
2019-01-30 13:47:58 +09:00
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 13:47:58 +09:00
return normalize(raw);
};