-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unescaped '<' error in exported SVG? #16
Comments
If I do this:
then I get no output. So it doesn't seem that there's a |
I'm running into a different problem when using |
It's about 5Mb. I posted it to my google drive, but I'm getting a "sharing unavailable, try again later" message. I'll try again later. Thanks for looking at this! |
This also makes svgwriter available by default.
Escape characters in shortinfo, too. Fixes (#16)
I figured it out, see df74874. |
But wow is rendering slow. See JuliaLang/julia#7977 (comment). |
Yeah, that makes this backend useless for larger datasets. I think it might be fixable though. Currently when the viewport is scaled, it's going over all the text and un-scaling it to prevent stretching. I think that's where the bottleneck is. I'm going to try for a rewrite this weekend to speed it up. If only there was something like ProfileView for |
😄 Thanks for looking into this! |
@darwindarak doesn't chrome have something like that? Although I believe it's just for the javascript engine, not the rendering engine. |
That's perfect, thanks! I don't think there's much I can do about the rendering engine, so a javascript profiler is just what I need. |
I was looking into package load times, and did the following (must do a
Pkg.update()
before trying this):When I try to view the resulting file with chromium, it partially renders but then I get this:
I don't get that error if I omit
C=true
.CC @darwindarak, any ideas?
The text was updated successfully, but these errors were encountered: