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 some specific cases, i would like to merged tspans, for example:
<tspan x="74.1 83.5 91.7 109.1 118.4 124.3" y="230.5">as at </tspan> <tspan x="140.5 151.1 160.4" y="230.5">be </tspan> <tspan x="173.6 184.1 194.7" y="230.5">by </tspan>
should be:
<tspan x="74.1 83.5 109.1 118.4 140.5 151.1 173.6 184.1" y="230.5">asatbeby</tspan>
I'd recently faced a lot of binary-trees schemes generated from pdf vectors, and i was surprised converters use tspan with multivalues attributes.
To optimize these specific schemes, i wrote a narrowly-specific js, i hope it will better clarify this idea http://jsfiddle.net/denvdmj/xoaLn7sj/embedded/
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In some specific cases, i would like to merged tspans, for example:
should be:
I'd recently faced a lot of binary-trees schemes generated from pdf vectors, and i was surprised converters use tspan with multivalues attributes.
To optimize these specific schemes, i wrote a narrowly-specific js, i hope it will better clarify this idea http://jsfiddle.net/denvdmj/xoaLn7sj/embedded/
The text was updated successfully, but these errors were encountered: