瀏覽代碼

feat: markdown公式

sunxiao 9 月之前
父節點
當前提交
549ea85bfc
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/components/Chat/ChatText.vue

+ 2 - 2
src/components/Chat/ChatText.vue

@@ -36,8 +36,8 @@ const mdi = new MarkdownIt({
 mdi.use(mila, { attrs: { target: '_blank', rel: 'noopener' } });
 
 mdi.use(markdownItMath, {
-  inlineOpen: '\\(',
-  inlineClose: '\\)',
+  inlineOpen: '$',
+  inlineClose: '$',
   blockOpen: '\\[',
   blockClose: '\\]'
 });