some fixes to sentence case conversion. See https://forums.zotero.org/discussion/35190/beta-capitalization-after-colons/#Item_14
This commit is contained in:
parent
f70d0c0b29
commit
96bd07b172
1 changed files with 4 additions and 4 deletions
|
@ -1950,10 +1950,10 @@
|
|||
break;
|
||||
case 'sentence':
|
||||
// capitalize the first letter, including after beginning punctuation
|
||||
// capitalize after :, ?, ! and remove space(s) before those analogous to capitalizeTitle function
|
||||
// also deal with initial punctuation here - open quotes and Spanish beginning quotation marks
|
||||
newVal = val.toLowerCase();
|
||||
newVal = newVal.replace(/(([:\?!]\s*|^)([\'\"¡¿“‘„«\s]+)?[^\s])/g, function (x) {
|
||||
// capitalize after ?, ! and remove space(s) before those as well as colon analogous to capitalizeTitle function
|
||||
// also deal with initial punctuation here - open quotes and Spanish beginning punctuation marks
|
||||
newVal = val.toLowerCase().replace(/\s*:/, ":");
|
||||
newVal = newVal.replace(/(([\?!]\s*|^)([\'\"¡¿“‘„«\s]+)?[^\s])/g, function (x) {
|
||||
return x.replace(/\s+/m, " ").toUpperCase();});
|
||||
break;
|
||||
default:
|
||||
|
|
Loading…
Reference in a new issue