Malo

Results 20 issues of Malo

### Description Some languages, like french, add a no-break space before the colon.[^1][^2][^3] [^1]: https://en.wikipedia.org/wiki/Colon_(punctuation)#Spacing_and_parentheses [^2]: https://fr.wikipedia.org/wiki/Deux-points#Typographie (french) [^3]: A narrow no-break space (U+202F) in some regions. In the example...

feature request
text

### Description Take a look at the following Typst code. ```typ // Replaces any figure by its caption separator. #show figure: it => { it.caption.separator } #figure( caption: figure.caption(separator: [separator])[caption]...

styling

### Description Prime symbols can be attached as limits instead of always being attached as exponents. Not sure if this is a bug or the intended behavior. ```typst $ lim'...

bug
math

### Description I'm not sure if this issue should go to hypher or here. In the following document, the first heading is broken, even though there is clearly enough space...

bug

In French, a hyphen can be added right after an apostrophe, which is incorrect.[^1][^2] This can be reproduced in Typst with the following code. ```typ #set text(lang: "fr") #set page(width:...

### The problem When a block equation is part of a sentence and followed by a punctuation mark, like a period, you have to put it *inside* the equation for...

feature request
math
syntax

### Description `calc.hypot(x, y) == calc.sqrt(x * x + y * y)` for floats and integers. For lengths, `calc.hypot(x, y)` would work similarly, keeping the unit. ### Use Case Computing...

feature request
scripting
good contribution

This small documentation PR improves the documentation for the `float` and `int` types.

### Description I forgot about this case in #2936, so I'm opening this issue instead of making another small PR that changes a behavior that only rarely happens. The repr...

bug
scripting

Fixes #2955. I decided to use `calc.inf` and `calc.nan` instead of `float("inf")` and `float("nan")` because the former feel like constants, while the latter feel like more arbitrary ways of getting...