From c4c0b1aaacb59269d6d120ee74417d9734aba1ec Mon Sep 17 00:00:00 2001 From: bchuter <30870299+bchuter@users.noreply.github.com> Date: Sun, 8 Nov 2020 14:15:16 +1100 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 540244d..7f0b8ca 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ the Main list has increased from **5900+-** corrections up to **8200+-**. ## Attention -* Ensure the script file is saved and encoded in **"UTF-8-BOM"**, **UTF-8** is not sufficient.
My script has been converted and saved as UTF-8-BOM. I mention this should it have changed at any point at your end.
You will get strange behaviour when converting letters with sepcial characters if not encoded as **UTF-8-BOM**.
E.g. touché, will output touché
You can use [Notepadd++](https://notepad-plus-plus.org/downloads/) to convert files, open the file in Notepad++ and then in the top menu **Encoding > Convert to UTF-8-BOM**,
then save your file. +* Ensure the script file is saved and encoded in **"UTF-8-BOM"**, **UTF-8** is not sufficient.
My script has been converted and saved as UTF-8-BOM. I mention this should it have changed at any point at your end.
You will get strange behaviour when converting letters with sepcial characters if not encoded as **UTF-8-BOM**.
E.g. touché, will output touché
You can use [**Notepadd++**](https://notepad-plus-plus.org/downloads/) to convert files, open the file in **Notepad++** and then in the top menu **Encoding > Convert to UTF-8-BOM**,
then save your file. * If your output word contains a \` (Grave accent) character (as a standalone, not as an accent to a letter),
you need to type it twice, this is due to AHK using \` as an escape character.
E.g. Password123\`! would output as Password123! (without the \` ) so to output correctly use Password123\`\`!
(the first one is treated as a escape character and the second is the character to remain) ## Changelog