UNPKG

tex2typst

Version:

JavaScript library for converting TeX code to Typst

11 lines (8 loc) 257 B
/** * This file is the entry point for bundling the .js file for the browser. */ import { tex2typst, typst2tex } from './index'; if(typeof window !== 'undefined') { (window as any).tex2typst = tex2typst; (window as any).typst2tex = typst2tex; }