mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 05:13:09 +02:00
parent
2654936c17
commit
73c78d4c38
1 changed files with 2 additions and 2 deletions
|
@ -285,11 +285,11 @@ export default defineComponent({
|
|||
}
|
||||
|
||||
case 'mathInline': {
|
||||
return [h('code', genEl(token.props.formula))];
|
||||
return [h('code', token.props.formula)];
|
||||
}
|
||||
|
||||
case 'mathBlock': {
|
||||
return [h('code', genEl(token.props.formula))];
|
||||
return [h('code', token.props.formula)];
|
||||
}
|
||||
|
||||
case 'search': {
|
||||
|
|
Loading…
Reference in a new issue