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