feat: introduce typlite's cli (#451)

* feat: introduce typlite's cli

* build: specify default-bin

* fix

* fix: default bin again

* dev: ignore typlite's lock
This commit is contained in:
Myriad-Dreamin 2024-07-23 19:48:14 +08:00 committed by GitHub
parent 81a95816b6
commit f8c4218534
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 27 additions and 1 deletions

View file

@ -96,7 +96,8 @@ impl Typlite {
MathRoot => Self::str(node, s),
// Punctuation
Hash => Self::char('#', s),
// Hash => Self::char('#', s),
Hash => Ok(()),
LeftBrace => Self::char('{', s),
RightBrace => Self::char('}', s),
LeftBracket => Self::char('[', s),