badge export fails with HTML special characters in URL...
psudopixel opened this issue · comments
psudopixel commented
a URL with a space in it (%20) fails to generate a badge. really any % character in the URL causes the failure, the space is the easiest example to provide.
I'm not saying it's best practices, but Microsoft URLs for things in Sharepoint are riddled with them.
Musa Al-hassy commented
Thanks for letting me know; I'll make a push to fix this soon :-)
Intended Plan of Action: Look at the ...-make-badge
function, then before any format
we should replace %
with %%
; i.e., to escape the percentage signs from the format
.
Musa Al-hassy commented
Fixed in most recent commit.