valadaptive
valadaptive
In order to use `hb_subset_input_override_name_table`, you need to know the platform ID, encoding ID, and language ID of the record you want to override. However, there currently seems to be...
Resolves #276.
I'm working on a JS library that relies heavily on C/C++ libraries compiled to WebAssembly. Currently I'm using Emscripten to do this, but I think wasi-sdk is probably the way...
This is related to #258. The fix for #258 made it so empty lines use their span's metrics, but this doesn't seem to apply to empty lines at the start...
Currently, the tab character is not displayed at all--it has no width. Cosmic Text has "expanding tabs", which means they're aligned relative to the start of each row, but we...
See the [CSS `text-overflow` property](https://developer.mozilla.org/en-US/docs/Web/CSS/text-overflow). If we want to truncate some text rather than wrap it, it'd be nice to do that cleanly with an ellipsis instead of just clipping...
Expanding on what I brought up at [today's office hours](https://xi.zulipchat.com/#narrow/channel/359642-office-hours/topic/2025-03-20/with/507015077). Parley's `LayoutAccessibility` API requires access to the root `TreeUpdate`, which it pushes nodes directly into. When trying to integrate this...
Similar to the Blitz tracking issue, this is what egui will eventually need from Parley. ## Parley - [x] Text wrap styling (https://github.com/linebender/parley/pull/315) - [x] Text truncation with ellipsis -...
The [`size-adjust` CSS property](https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/size-adjust) allows you to set scaling factors for specific font families. This is useful for harmonizing the size of text written in different fonts (something similar is...
There have been a few scenarios in integrating Parley with egui where I've thought "this would be easy to implement if only I could manually adjust lines' positions". For instance:...