Skip to content

Commit

Permalink
Merge pull request j0be#38 from biran4454/master
Browse files Browse the repository at this point in the history
Fix comment hashtag issue
  • Loading branch information
j0be authored Jun 15, 2023
2 parents 643e3a3 + 1d4e504 commit 102ae50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion powerdeletesuite.js
Original file line number Diff line number Diff line change
Expand Up @@ -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+'",';
Expand Down

0 comments on commit 102ae50

Please sign in to comment.