mirror of
https://github.com/infinilabs/coco-app.git
synced 2026-09-01 19:51:52 +02:00
We found that Windows Search would error out if it encounters a single quote character, the natural solution would be to escape it. But I couldn't find out how. The approach mentioned by most posts: ``` ~="<Unsupported Char>" ``` won't work in my test. So I decided to replace it with a whitespace. Single quote is not the first unsupported character I know, the newline character is not supported as well, so it will be handled in the same way.