TimJentzsch
TimJentzsch
I'd also very much like to have this merged :)
> I've noticed that https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/accessible-emoji.md is now [deprecated]. I can't find out why, but is it a possibility that this is solved somewhere else now (browser/screen reader directly). @jamesb93 Here...
I think you're right on both points, not adding too much documentation is a good idea and improving the API doc itself would be valuable!
If you're looking for contributions, I'd be interested in taking a stab at implementing this. However I have to say that I am rather new at LSP and async Rust.
Thank you for opening this issue! May I suggest to use syntax highlighting in your code blocks, like this? ```rust // Your code ``` This makes it easier to read...
In your use-case, would it be possible to clone the `Font`? That would eliminate the reference and the lifetime errors. I definitely agree that we need more examples and more...
For me the following compiles: ```rust use stretch2::{ node::MeasureFunc, prelude::{Number, Size, Style}, }; #[derive(Clone)] struct Font { x: f32, y: f32, } fn load_font() -> Font { Font { x:...
> I like this, but I don't see why we're only randomizing the leaf styles. Why not randomize the style of every node? Sorry, this is a mistake on my...
This should now be ready for review. The two benchmarks (both use 100_000 nodes): - Flat hierarchy: Every child has 1-4 sub-children, otherwise it's a flat hierarchy. - Deep hierarchy:...
CSS grid also works in combination with Flexbox, I use the `gap` properly quite often with Flexbox during web development. I wonder how we can make some algorithms work in...