Dan Groshev
Dan Groshev
It also worked for me, but not with master version of this repo. Not all the time, at least. Please try to run `rebar doc skip_deps=true` on https://github.com/band115/ecirca , open...
Strange. But we can call it "can't reproduce" and close anyway :)
Now I see, thank you. Would you mind putting this explanation to README?
Hey @tkralphs , do you think you might find a bit of time to check this issue out? Between this and py3 issues it's really a showstopper both for this...
Hi there! Thanks for report and sorry for the very late reply. I fixed the issue, it should work now. However, I wasn't able to recreate the plot with recent...
```svg Every Time ✅ 12:25 London 🇬🇧 ``` Font DB is passed in explicitly and initialised like this: ```rust let mut fontdb = usvg::fontdb::Database::new(); fontdb.load_font_data( include_bytes!("../fonts/apple_color_emoji/AppleColorEmoji.ttf").to_vec(), ); fontdb.load_font_data(include_bytes!("../fonts/nunito/Nunito-Regular.ttf").to_vec()); fontdb.load_font_data(include_bytes!("../fonts/nunito/Nunito-ExtraBold.ttf").to_vec()); ```...
Thank you! If I understand the API correctly, the original issue https://github.com/RazrFalcon/fontdb/issues/76 would be resolved by matching the result of `fontique`'s `Collection::register_fonts`. However, I believe that this issue is still...
Fwiw I had a look at about a dozen grammars, and all of them were using very simple regexes. I believe the `regex` crate should be able to handle them,...
Fair, I double checked and realised I didn't pay enough attention, there are plenty of `?
I started a `vscode-textmate` rewrite here: https://github.com/si14/rust-textmate It's very, very early days, so far I only succeeded to load all grammars (after *backtracking* from several dead ends). Assorted, unordered notes...