If you paste the address into the address bar, it shows the umlauts. To me that suggests that the server knows how to serve them from the text file.
On Wednesday, July 17, 2019 at 6:08:55 AM UTC-7, Jed Carty wrote: > > I am not sure what I did but I am glad I was able to help. > > > The problem is almost certainly with encoding, but I am not certain where. > One unlikely place is using > > var urltext = unescape(client.responseText); > > in the javascript macro, changing that to > > var urltext = decodeURI(client.responseText); > > may help. Even if it doesn't help here it is good practice to use > decodeURI instead of unescape. > > I think that a more likely place for the problem is on the server side. If > the text file isn't being read as a utf8 string than any characters that > aren't in the basic ascii set won't be sent correctly. That includes any > letters with accents or language specific variants, like > ß. > > What sort of server are you using on the computer that contains the text > file? > -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/tiddlywiki. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/ee77ea23-ae41-4f52-ac01-0c42b93e54ba%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

