mojombo/github-flavored-markdown

CJK support.

Closed this issue · 3 comments

I have this wiki page:

https://github.com/bitsmix/dotvim/wiki/Hello

Chinese, Japanese and Korean characters are not show as expected in the code section.

the source code of wiki:

var foo = function(bar) {
    alert('你好'); //"hello" in Chinese.
    alert('こんにちは'); //"hello" in Japanese".
    alert('안녕하세요'); //"hello" in Korean.
};

update:

GFM in issue works fine with CJK Characters.. why don't support wiki page?

The same thing goes for wikis in other non-ascii languages. Any simple text displays correctly but source code blocks show UTF characters as ISO.

var foo = function(bar) {
    alert('Привет'); // "hello" in Russian.
};

Results this:

var foo = function(bar) {
    alert('��иве�'); // "hello" in Russian.
};

Is this still an issue? If not, could you close the issue?

it's not a issue anymore now :) cheers.