2019-01-30 15:12:48 +09:00
|
|
|
import parser from './parser';
|
2019-01-30 14:51:30 +09:00
|
|
|
import { MfmForest } from './types';
|
2019-01-30 13:47:58 +09:00
|
|
|
import { normalize } from './normalize';
|
2018-11-21 05:11:00 +09:00
|
|
|
|
2019-01-30 15:27:54 +09:00
|
|
|
export default (source: string): MfmForest => {
|
2018-12-20 19:41:04 +09:00
|
|
|
if (source == null || source == '') {
|
|
|
|
return null;
|
|
|
|
}
|
2018-11-21 05:11:00 +09:00
|
|
|
|
2019-01-30 15:27:54 +09:00
|
|
|
return normalize(parser.root.tryParse(source));
|
2018-11-21 05:11:00 +09:00
|
|
|
};
|
2019-01-30 15:27:54 +09:00
|
|
|
|
|
|
|
export function parsePlain(source: string): MfmForest {
|
|
|
|
if (source == null || source == '') {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return normalize(parser.plain.tryParse(source));
|
|
|
|
}
|