diff --git a/package.json b/package.json index f7f7882c..c8dab2b8 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,6 @@ "@form-create/designer": "^3.1.3", "@form-create/element-ui": "^3.1.24", "@iconify/iconify": "^3.1.1", - "@iktakahiro/markdown-it-katex": "^4.0.1", "@microsoft/fetch-event-source": "^2.0.1", "@videojs-player/vue": "^1.0.0", "@vueuse/core": "^10.9.0", @@ -53,7 +52,7 @@ "highlight.js": "^11.9.0", "jsencrypt": "^3.3.2", "lodash-es": "^4.17.21", - "markdown-it": "^14.1.0", + "marked": "^12.0.2", "min-dash": "^4.1.1", "mitt": "^3.0.1", "nprogress": "^0.2.0", diff --git a/src/components/MdPreview/copy.ts b/src/components/MdPreview/copy.ts deleted file mode 100644 index e2f53bc2..00000000 --- a/src/components/MdPreview/copy.ts +++ /dev/null @@ -1,22 +0,0 @@ -export const copyText = (content: string) => {//复制 - // content = content.replace(/^\s/,'') - navigator.clipboard.writeText(content).then(function () { - ElMessage({ - message: '复制成功!', - type: 'success', - }) - }).catch(function () { - (function (content) { - document.oncopy = function (e) { - e.clipboardData?.setData('text', content); - e.preventDefault(); - document.oncopy = null; - ElMessage({ - message: '复制成功!', - type: 'success', - }) - }; - })(content); - document.execCommand('copy'); - }); -}; diff --git a/src/components/MdPreview/index.vue b/src/components/MdPreview/index.vue deleted file mode 100644 index 882d59e4..00000000 --- a/src/components/MdPreview/index.vue +++ /dev/null @@ -1,225 +0,0 @@ - - - - - - - diff --git a/src/components/MdPreview/md.ts b/src/components/MdPreview/md.ts deleted file mode 100644 index 81aa7b65..00000000 --- a/src/components/MdPreview/md.ts +++ /dev/null @@ -1,30 +0,0 @@ - -// @ts-ignore -import markdownit from 'markdown-it'; -import hljs from 'highlight.js'; // https://highlightjs.org -import katexPlugin from '@iktakahiro/markdown-it-katex'; -const codeTool = (text: string) => ``; - -const md = markdownit({ - html: true, - linkfy: true, - highlight: function (str: string, lang: string) { - const baseText = str - if (lang && hljs.getLanguage(lang)) { - try { - return '
' +
- hljs.highlight(str, { language: lang, ignoreIllegals: true }).value +
- '
' + codeTool(baseText) + '
';
- } catch (__) { }
- }
- return '' + md.utils.escapeHtml(str) + '
' + codeTool(baseText) + '
';
- }
-});
-
-md.use(katexPlugin);
-
-export default md;
diff --git a/src/views/ai/chat/index.vue b/src/views/ai/chat/index.vue
index 317f6838..2b1df1ce 100644
--- a/src/views/ai/chat/index.vue
+++ b/src/views/ai/chat/index.vue
@@ -88,18 +88,18 @@