KillyMXI

Results 143 comments of KillyMXI

Interesting. How in the world I'm supposed to learn that this font has a stylistic set (OpenType alternative) for zero looks? It has to be documented somewhere. But, while I'm...

@alexeyten thank you! It did the trick. Now my only complain within this issue is about documentation - better have all available features listed in the readme / at the...

This is why I can't use ligatures the way they are now. The change in shape is really confusing. We need an option for aligned but still spaced symbols. And...

@philippnurullin My takeaway from that comment is that if you take too much liberty with symbols interpretation, there inevitably will be cases when your interpretation conflicts with various contexts. Some...

I can't disagree *you* like it. Even if I were less concerned about the disconnection between the shape and underlying characters, this symbol still has another issue: Thin diagonal line...

Is there a way to force Skia to render all text as paths? Is there a way to make a path from a particular text?

I'm trying to run [pdf checker](https://www.datalogics.com/products/pdf-tools/pdf-checker/) on a file generated with SkiaSharp, with no strings in it. The only non-empty notice in the report: ``` Cleanup Results Errors: None Information:...

I think I also ran into the same issue. Depending on a certain condition I wanted to use a different entry point and return a result object of a different...

> If you eliminate ambiguous alternatives at any time during the parsing, it's possible that you'll eliminate the only alternative that would ultimately end up matching! I think it's the...

Destructure `d` and drop unneeded parts: ```js ([,func,,,,,method,,,,file,,line,,col,]) => ({ func, method, file, line, col }) ``` It's still fairly easy to miscount comma numbers though (I can't guarantee I...