forked from FoundKeyGang/FoundKey
Better MFM rendering
This commit is contained in:
parent
8495e37566
commit
c9fcfc6862
1 changed files with 7 additions and 3 deletions
|
@ -130,9 +130,13 @@ export default defineComponent({
|
|||
break;
|
||||
}
|
||||
}
|
||||
return h('span', {
|
||||
style: 'display: inline-block;' + style,
|
||||
}, genEl(token.children));
|
||||
if (style == null) {
|
||||
return h('span', {}, ['[', token.node.props.name, ...genEl(token.children), ']']);
|
||||
} else {
|
||||
return h('span', {
|
||||
style: 'display: inline-block;' + style,
|
||||
}, genEl(token.children));
|
||||
}
|
||||
}
|
||||
|
||||
case 'small': {
|
||||
|
|
Loading…
Reference in a new issue