From f6cc394eabc3298916abfa898b16c5d415bacf0f Mon Sep 17 00:00:00 2001 From: andresgit <9771158+andresgit@users.noreply.github.com> Date: Thu, 15 May 2025 16:35:48 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20feat:=20add=20`copy-tex`=20to=20?= =?UTF-8?q?improve=20copying=20KaTeX=20(#7308)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When selecting equations and using copy paste, uses the correct latex code. Co-authored-by: Ruben Talstra --- client/src/main.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/main.jsx b/client/src/main.jsx index 4c7bde0270..53b483f8d2 100644 --- a/client/src/main.jsx +++ b/client/src/main.jsx @@ -6,6 +6,7 @@ import './style.css'; import './mobile.css'; import { ApiErrorBoundaryProvider } from './hooks/ApiErrorBoundaryContext'; import 'katex/dist/katex.min.css'; +import 'katex/dist/contrib/copy-tex.js'; const container = document.getElementById('root'); const root = createRoot(container);