This commit is contained in:
dakkar 2024-06-13 09:24:36 +01:00
parent b2cbd507fe
commit 599bc708de

View file

@ -452,11 +452,11 @@ export default function (props: MfmProps, { emit }: { emit: SetupContext<MfmEven
if (!props.nowrap) {
return [h('bdi', { class: 'block' }, h('div', {
style: QUOTE_STYLE,
}, h('bdi',genEl(token.children, scale, true))))];
}, h('bdi', genEl(token.children, scale, true))))];
} else {
return [h('span', {
style: QUOTE_STYLE,
}, h('bdi',genEl(token.children, scale, true)))];
}, h('bdi', genEl(token.children, scale, true)))];
}
}