tex2typst 0.2.9 → 0.2.12

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
@@ -59,11 +59,12 @@ console.log(output);
59
59
 
60
60
  ```mermaid
61
61
  graph LR
62
- tex[TeX code] --parser--> ast[TeX AST] --writer--> typst[Typst code]
62
+ tex[TeX code] --parser--> tex_ast[TeX AST] --converter--> typst_ast[Typst AST] --writer--> typst[Typst code]
63
63
  ```
64
64
 
65
- - parser: Implemented in class `LatexParser()`.
66
- - writer: Implemented in class `TypstWriter()`
65
+ - parser: Implemented in class `LatexParser`.
66
+ - converter: Implemented in function `convertTree`.
67
+ - writer: Implemented in class `TypstWriter`.
67
68
 
68
69
  ## Contributing
69
70