tex2typst 0.1.20 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -23,6 +23,8 @@ npm install tex2typst
23
23
 
24
24
  Replace `0.1.20` with the latest version number in case this README is outdated.
25
25
 
26
+ The size of minimized library `tex2typst.min.js` is about 23 KB.
27
+
26
28
  ## Usage
27
29
 
28
30
  ### Basic usage
@@ -60,7 +62,7 @@ graph LR
60
62
  tex[TeX code] --parser--> ast[TeX AST] --writer--> typst[Typst code]
61
63
  ```
62
64
 
63
- - parser: Implemented in function `parseTex()`. At present, it depends on the parser implemented by [KaTeX](https://github.com/KaTeX/KaTeX).
65
+ - parser: Implemented in class `LatexParser()`.
64
66
  - writer: Implemented in class `TypstWriter()`
65
67
 
66
68
  ## Contributing