Make sure your text editor is saving files as UTF-8 (you may need to "Save as" - some editors only show encoding at that point--in TextMate it's in the "Advanced" preference pane), and so browsers know what to do ensure that HTML files contain the UTF-8 content-type directive (before anything else, especially <title>):
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>My document with ÜTF8 chars</title> .... rest of template here... --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web.py" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/webpy?hl=en -~----------~----~----~----~------~----~------~--~---
