speech: "A" sounds better than "a"

This commit is contained in:
Thibault Duplessis 2019-04-29 11:34:35 +07:00
parent 7fb5e20932
commit ce9a5f059f

View file

@ -14,7 +14,7 @@ export function renderSan(san: San) {
if (c == '@') return 'at';
const code = c.charCodeAt(0);
if (code > 48 && code < 58) return c; // 1-8
if (code > 96 && code < 105) return c + ' ';
if (code > 96 && code < 105) return c.toUpperCase();
return roles[c] || c;
}).join(' ');
if (san.includes('+')) move += ' check';