Merge pull request #38 from biran4454/master

Fix comment hashtag issue
This commit is contained in:
Ronald Troyer 2023-06-15 13:46:57 -04:00 committed by GitHub
commit 102ae505b2

View file

@ -272,7 +272,7 @@ var pd = {
return check.subs && check.gold && check.saved && check.mod && check.score && check.date;
},
csvEscape: function(str) {
return str.replace(/'/g,'`').replace(/"/g,'""');
return str.replace(/#/g,'%23').replace(/'/g,'`').replace(/"/g,'""');
},
csvCell: function(str) {
return '"'+str+'",';