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
This is in relation to the true issue of #90. Including relevant information here:
Reproduction case:
var pptx = new PptxGenJS(); var slide = pptx.addNewSlide(); slide .addText([ {text: 'test A & B', options: {hyperlink: {url: 'https://github.com/gitbrent/pptxgenjs?a=1&b=2', tooltip: ' A&B'}}} ], {x: 0.62, y: 1, w: 5.3, h: 0.34, font_size: 14, color: '667184', bullet: {code: '27A2'}} ); pptx.save('testhyperlink');
Doesn't work due to "a=1&b=2" in the url.
In the linked issue, a suggestion was that there was a missing decodeXmlEntities(rel.Target) call somewhere in the library.
decodeXmlEntities(rel.Target)
The text was updated successfully, but these errors were encountered:
Fix for hyperlink with ampersand (Issue #562)
f0294be
Thanks @Tehnix
This is now fixed and will be released with v3.0
Sorry, something went wrong.
Fix for hyperlink with ampersand (Issue gitbrent#562)
225d79a
gitbrent
No branches or pull requests
This is in relation to the true issue of #90. Including relevant information here:
Reproduction case:
Doesn't work due to "a=1&b=2" in the url.
In the linked issue, a suggestion was that there was a missing
decodeXmlEntities(rel.Target)
call somewhere in the library.The text was updated successfully, but these errors were encountered: