UNPKG

tex2typst

Version:

JavaScript library for converting TeX code to Typst

9 lines (6 loc) 211 B
/** * This file is the entry point for bundling the .js file for the browser. */ import { tex2typst, typst2tex } from './index'; (window as any).tex2typst = tex2typst; (window as any).typst2tex = typst2tex;