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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
The urls will be wrong encoded. If there is for example a space character, the resulting urls will be multiple encoded, such e.g.
http://127.0.0.1:8888/doc/module-BossMaintenance%2520Vue%2520Component.html or http://127.0.0.1:8888/doc/module-BossMaintenance%252520Vue%252520Component.html
instead of
http://127.0.0.1:8888/doc/module-BossMaintenance%20Vue%20Component.html
HOTFIX: line 353 buildLink in templateHelper.js: if(fileUrl.indexOf("%25")<0){ return util.format('<a href="%s"%s>%s', encodeURI(fileUrl + fragmentString), classString, text); }else{ return util.format('<a href="%s"%s>%s', encodeURI(decodeURI(fileUrl) + fragmentString), classString, text); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The urls will be wrong encoded. If there is for example a space character, the resulting urls will be multiple encoded, such e.g.
http://127.0.0.1:8888/doc/module-BossMaintenance%2520Vue%2520Component.html
or
http://127.0.0.1:8888/doc/module-BossMaintenance%252520Vue%252520Component.html
instead of
http://127.0.0.1:8888/doc/module-BossMaintenance%20Vue%20Component.html
HOTFIX: line 353 buildLink in templateHelper.js:
if(fileUrl.indexOf("%25")<0){
return util.format('<a href="%s"%s>%s', encodeURI(fileUrl + fragmentString), classString, text);
}else{
return util.format('<a href="%s"%s>%s', encodeURI(decodeURI(fileUrl) + fragmentString), classString, text);
}
The text was updated successfully, but these errors were encountered: