forked from Mirrors/elk
fix: properly parse bolded italics (#1808)
This commit is contained in:
parent
29b37e67c7
commit
f98c667613
1 changed files with 1 additions and 1 deletions
|
@ -445,7 +445,7 @@ function replaceCustomEmoji(customEmojis: Record<string, mastodon.v1.CustomEmoji
|
||||||
}
|
}
|
||||||
|
|
||||||
const _markdownReplacements: [RegExp, (c: (string | Node)[]) => Node][] = [
|
const _markdownReplacements: [RegExp, (c: (string | Node)[]) => Node][] = [
|
||||||
[/\*\*\*(.*?)\*\*\*/g, c => h('b', null, [h('em', null, c)])],
|
[/\*\*\*(.*?)\*\*\*/g, ([c]) => h('b', null, [h('em', null, c)])],
|
||||||
[/\*\*(.*?)\*\*/g, c => h('b', null, c)],
|
[/\*\*(.*?)\*\*/g, c => h('b', null, c)],
|
||||||
[/\*(.*?)\*/g, c => h('em', null, c)],
|
[/\*(.*?)\*/g, c => h('em', null, c)],
|
||||||
[/~~(.*?)~~/g, c => h('del', null, c)],
|
[/~~(.*?)~~/g, c => h('del', null, c)],
|
||||||
|
|
Loading…
Reference in a new issue