lumi-a
lumi-a
### Proposed feature or solution The week-start and time-format should have default values based on the user's locale. Currently, as far as I can tell, their default values are always...
### Description I'm writing a package to solve #592 and #1840. In the current Typst version, `$aᵇ$` results in an "unknown variable" error, as `aᵇ` is treated as an identifier....
Heya, thank you for your awesome additions to alpha-zero! I tried to run your code, but unfortunately ran into some errors that look similar to the ones in #3. First,...
Background: I've been using your implementation of quick-maths to write a package [handling Unicode super-/subscripts in maths-mode](https://github.com/typst/typst/issues/592) (thanks for the MIT license!), and have some questions about your implementation of...
Fixes #2110. I didn't compile nor test this change.
The method [`Set.intersect`](https://github.com/grain-lang/grain/blob/fc19761e9f7e6c3d1cb54a308de721b17d25e12e/stdlib/set.gr#L441) is implemented as: ``` provide let intersect = (set1, set2) => { let set = make() forEach(key => { if (contains(key, set2)) { add(key, set) } },...