set isBlock for mfm render in embeds

This commit is contained in:
dakkar 2024-10-10 13:05:03 +01:00
parent abb93f1d79
commit e87b1d2b11
7 changed files with 10 additions and 6 deletions

View file

@ -396,7 +396,7 @@ export default function (props: MfmProps, { emit }: { emit: SetupContext<MfmEven
}
case 'blockCode': {
return [h('bdi', h('code', {
return [h('bdi', { class: 'block' }, h('code', {
key: Math.random(),
lang: token.props.lang ?? undefined,
}, token.props.code))];