mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-03-12 23:20:25 +08:00
interpret ellipsis as 3 periods (#2223) by SethFalco
This commit is contained in:
parent
fd283a1839
commit
9a2a299210
1 changed files with 8 additions and 0 deletions
|
@ -351,6 +351,14 @@ function handleChar(char, charIndex) {
|
|||
return;
|
||||
}
|
||||
|
||||
if (char === "…") {
|
||||
for (let i = 0; i < 3; i++) {
|
||||
handleChar(".", charIndex + i);
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
if (char === "\n" && Config.funbox === "58008") {
|
||||
char = " ";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue