mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-24 19:56:43 -06:00
parent
2654936c17
commit
73c78d4c38
1 changed files with 2 additions and 2 deletions
|
@ -285,11 +285,11 @@ export default defineComponent({
|
||||||
}
|
}
|
||||||
|
|
||||||
case 'mathInline': {
|
case 'mathInline': {
|
||||||
return [h('code', genEl(token.props.formula))];
|
return [h('code', token.props.formula)];
|
||||||
}
|
}
|
||||||
|
|
||||||
case 'mathBlock': {
|
case 'mathBlock': {
|
||||||
return [h('code', genEl(token.props.formula))];
|
return [h('code', token.props.formula)];
|
||||||
}
|
}
|
||||||
|
|
||||||
case 'search': {
|
case 'search': {
|
||||||
|
|
Loading…
Reference in a new issue