interpret ellipsis as 3 periods (#2223) by SethFalco

This commit is contained in:
Seth Falco 2021-12-28 22:11:13 +01:00 committed by GitHub
parent fd283a1839
commit 9a2a299210
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 = " ";
}