fix(client): 数式を含む投稿が表示されないのを修正

Fix #9535
This commit is contained in:
syuilo 2023-01-13 17:45:20 +09:00
parent 2654936c17
commit 73c78d4c38
1 changed files with 2 additions and 2 deletions

View File

@ -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': {