-
-
Notifications
You must be signed in to change notification settings - Fork 7.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Static sync to memory fails with Norwegian "å" #2203
Comments
I think it is normalization problem. https://blog.golang.org/normalization As well as NFC is used in most cases, but in Mac OS's HFS+ file system, a file name is automatically normalized to NFD. Even if we save a file name in NFC, we need to use NFD to open the file. In this issue's case, Hugo server is able to serve I think this issue can be fixed by normalizing a file name to NFC when files are added to Hugo's filesystem, so that we can use NFC to access files in any cases. |
I understand afero as the abstraction layer of various filesystems, and I wonder if normalizing a file name is out of scope. |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
hugo server
The text was updated successfully, but these errors were encountered: