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
text
I expect the below to produce "foobarbaz" - but it produces "foo bar baz":
"foobarbaz"
"foo bar baz"
text(parsehtml("<em>foo</em>bar<em></em>baz").root)
The motivating case was:
text(parsehtml("<math><mrow><msub><mrow><mi>MoSe</mi></mrow><mrow><mn>2</mn></mrow></msub></mrow></math>").root)
which produces "MoSe 2" rather than "MoSe2".
"MoSe 2"
"MoSe2"
The issue is with the apparently redundant ' ' in
' '
Gumbo.jl/src/manipulation.jl
Line 45 in afc2b2b
The text was updated successfully, but these errors were encountered:
remove redunant space insertion in text (fix JuliaWeb#100)
8cd8531
No branches or pull requests
I expect the below to produce
"foobarbaz"
- but it produces"foo bar baz"
:The motivating case was:
which produces
"MoSe 2"
rather than"MoSe2"
.The issue is with the apparently redundant
' '
inGumbo.jl/src/manipulation.jl
Line 45 in afc2b2b
Would it be acceptable to change this? If so, I can make a PR.
The text was updated successfully, but these errors were encountered: