feat: initialize Intellecton portal repository under GitOps Covenant

This commit is contained in:
Antigravity Agent
2026-05-23 14:20:22 +00:00
commit 2c09e491f8
28 changed files with 185865 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import katex from 'katex';
export default function Katex({ math, block = false }) {
const html = katex.renderToString(math, {
throwOnError: false,
displayMode: block,
});
return <span dangerouslySetInnerHTML={{ __html: html }} />;
}