Laurenz
Laurenz
The `gutter` variable overrides the `column-gutter`. Basically `gutter: X` is equivalent to passing `column-gutter: X, row-gutter: X`. So a desugared version of your example is ```typ #grid( columns: 2, column-gutter:...
> The docs ought to be clear about that then. How do you think we should word it? Right now it says "Takes precedence over gutter." for column-gutter. > When...
We can reword the docs. I'll reopen to track this.
Makes a lot of sense that it was the commit that updated hayagriva. To find the true source, we would need a hayagriva bisect.
Typst uses 64 bit signed integers, which can't represent that number.
Problematic code is here: https://github.com/typst/typst/blob/70b354e887cf735db070f766e4812357dddb8a40/crates/typst/src/foundations/int.rs#L264 We should probably cast to a float instead if it exceeds integer bounds (this in line with the linked RFC from my understanding). There's not...
I also think this would be really useful. The current setup is strongly geared towards using modules and bundling, which makes the resulting JavaScript less flexible to use. The concerns...
`svg2pdf` uses `usvg` behind the scenes to convert the SVG to a simpler representation. This also includes converting text to curves. So to correctly render text, you have to manually...
This should probably be explained in the documentation, we can keep this issue open to track that.
Hey @m-haug, @reknih is currently on vacation, so you'll probably have to wait some more. On a side note, I'm curious about the enum thing. I see that it would...