import { DocumentBlockMath, DocumentInlineMath } from '@gitbook/api'; import { getStaticFileURL } from '@/lib/assets'; import { tcls } from '@/lib/tailwind'; import { MathFormula } from '@gitbook/react-math'; import { BlockProps } from './Block'; import { InlineProps } from './Inline'; const mathJaxUrl = getStaticFileURL('mathjax@3.2.2/tex-chtml.js'); export async function BlockMath(props: BlockProps) { const { block, style } = props; return ( ); } export async function InlineMath(props: InlineProps) { const { inline } = props; return ; }