We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In CSS I can do:
body { font-family: monospace; }
but I can't do that with flamegraph, because it turns it into:
body { font-family: "monospace"; }
which means "the font called monospace" rather than "default monospace font".
monospace
The text was updated successfully, but these errors were encountered:
Ah, yes, that happens here:
inferno/src/flamegraph/svg.rs
Line 125 in b8b2f0d
I think we just need to teach that code path about the "special" font names so that it doesn't escape those! I'd be happy to take a look at a PR 👍
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
In CSS I can do:
but I can't do that with flamegraph, because it turns it into:
which means "the font called
monospace
" rather than "default monospace font".The text was updated successfully, but these errors were encountered: