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