You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Chinese I use. When use laravel-apidoc-generator generate apidoc, the Chinese flag will be ignored . Caused by the following code:
functionslugify(text){returntext.toString().toLowerCase().replace(/\s+/g,'-')// Replace spaces with -.replace(/[^\w\-]+/g,'')// Remove all non-word chars.replace(/\-\-+/g,'-')// Replace multiple - with single -.replace(/^-+/,'')// Trim - from start of text.replace(/-+$/,'');// Trim - from end of text}
Can you support Chinese flag?
The text was updated successfully, but these errors were encountered:
The Chinese I use. When use
laravel-apidoc-generator
generate apidoc, the Chinese flag will be ignored . Caused by the following code:Can you support Chinese flag?
The text was updated successfully, but these errors were encountered: