Skip to content
Snippets Groups Projects
Commit 8c079b3b authored by Martin Geisler's avatar Martin Geisler
Browse files

Use Emacs compatible coding system

Emacs doesn't recognize "utf8" as a valid coding system. The correct
name is "utf-8". This is in line with the UTF-8 FAQ:

  http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8

  The official name and spelling of this encoding is UTF-8, where UTF
  stands for UCS Transformation Format. Please do not write UTF-8 in
  any documentation text in other ways (such as utf8 or UTF_8), unless
  of course you refer to a variable name and not the encoding itself.
parent 66b2d239
No related branches found
No related tags found
No related merge requests found
## -*- coding:utf8 -*-
## -*- coding:utf-8 -*-
<%
msg = u'新中国的主席'
%>
......
## -*- coding:utf8 -*-
## -*- coding:utf-8 -*-
<%
msg = '新中国的主席'
%>
......
## -*- coding:utf8 -*-
## -*- coding:utf-8 -*-
<%
msg = '新中国的主席'
%>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment