CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/components/landing/latex.tsx
Views: 687
1
import React from "react";
2
import mathToHtml from "@cocalc/frontend/misc/math-to-html";
3
4
const LaTeX = React.memo(() => {
5
const { __html } = mathToHtml("\\LaTeX", true);
6
return <span dangerouslySetInnerHTML={{ __html }}></span>;
7
});
8
9
export default LaTeX;
10
11