Ilia

Results 67 comments of Ilia

I want to make something like in [note-me](https://github.com/typst/packages/tree/main/packages/preview/note-me/0.1.1) package, but have the line with rounded ends

I tried something like ```typ stack(dir: ltr, line(length: .., angle: 90deg), body) ``` but line doesn't accept `1fr` or `auto` as length, and 100% length is relative to the page....

`radius` looks bad if stroke is only on one side Details ```typ #box(stroke: (left: 1pt), radius: 1pt, inset: 5pt)[content] ``` ![image](https://github.com/typst/typst/assets/43654815/177bc7bd-b8a2-42a1-946d-deb927dcebf0)

Probably it could be applied to box's sides, when it's not joined with other sides? So to speak, to smooth out the edges

This works with grid/table: ```typ #let note(body) = { grid( stroke: (left: stroke(cap: "round", paint: blue)), inset: (left: 5pt), body, ) } #note(lorem(20)) ``` Details ![image](https://github.com/user-attachments/assets/c109f518-55a9-40fc-8a3e-d15df964aca8) So probably that's not...

Clap now has support for dynamic completions under `unstable-dynamic` cargo feature

Workaround https://github.com/tauri-apps/tauri/issues/7354#issuecomment-1841361540 GIO_MODULE_DIR seems unnecessary

I think it makes sense when `fallback: true`, but not when it's `false`

Maybe make it ```typ #warn missing-glyphs.when(text.fallback) ``` by default with the ability to override (when the warning system will be implemented)