@group Can not recognize Chinese characters
skynice opened this issue · 2 comments
i found in [apidoc-core/blob/master/lib/workers/api_group.js]
group = group.replace(/[^\w]/g, '_');
when Chinese characters in use ,the content replace by _
Hello,
A few month ago, I also found the problem.
So I resolved the problem by modifying the source as shown below.
I hope it would be helpful to you.
On Tue, May 31, 2016 at 13:52 skynice notifications@github.com wrote:
i found in [apidoc-core/blob/master/lib/workers/api_group.js]
group = group.replace(/[^\w]/g, '_');
when Chinese characters in use ,the content replace by _
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
#33, or mute the thread
https://github.com/notifications/unsubscribe/ADHFwhD6lXNYZKmbXOGht7tOmlsHcwmAks5qG76XgaJpZM4IqLTh
.
ok,thank you.