forked from FoundKeyGang/FoundKey
[MFM] Fix title parsing
This commit is contained in:
parent
a29d7a0475
commit
4c81e400c4
1 changed files with 2 additions and 3 deletions
|
@ -11,10 +11,9 @@ export type TextElementTitle = {
|
||||||
export default function(text: string, isBegin: boolean) {
|
export default function(text: string, isBegin: boolean) {
|
||||||
const match = isBegin ? text.match(/^(【|\[)(.+?)(】|])\n/) : text.match(/^\n(【|\[)(.+?)(】|])\n/);
|
const match = isBegin ? text.match(/^(【|\[)(.+?)(】|])\n/) : text.match(/^\n(【|\[)(.+?)(】|])\n/);
|
||||||
if (!match) return null;
|
if (!match) return null;
|
||||||
const title = match[0];
|
|
||||||
return {
|
return {
|
||||||
type: 'title',
|
type: 'title',
|
||||||
content: title,
|
content: match[0],
|
||||||
title: title.substr(1, title.length - 3)
|
title: match[2]
|
||||||
} as TextElementTitle;
|
} as TextElementTitle;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue