-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
fix: Update language support #1488
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 4 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
cf5c743
Set html “lang” attribute based on URL hash
jhildenbiddle 9a73bd1
Remove write-a-plugin.md alias
jhildenbiddle 7297ee5
Add label translations (ru, es)
jhildenbiddle 8f9f0e5
Prettier format updates (no changes)
jhildenbiddle 7cdf460
Restore pathNamespaces
jhildenbiddle 46bad40
Update test snapshot
jhildenbiddle ac0d416
Merge branch 'update-language-support' of https://github.com/docsifyj…
jhildenbiddle 2626036
Merge branch 'develop' into update-language-support
jhildenbiddle File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,99 +1,118 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <title>docsify</title> | ||
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | ||
| <meta name="viewport" content="width=device-width,initial-scale=1" /> | ||
| <link rel="stylesheet" href="/themes/vue.css" title="vue" /> | ||
| <link rel="stylesheet" href="/themes/dark.css" title="dark" disabled /> | ||
| <link rel="stylesheet" href="/themes/buble.css" title="buble" disabled /> | ||
| <link rel="stylesheet" href="/themes/pure.css" title="pure" disabled /> | ||
| <script src="//cdn.jsdelivr.net/npm/docsify-plugin-carbon@1.0.1/index.min.js"></script> | ||
| <style> | ||
| nav.app-nav li ul { | ||
| min-width: 100px; | ||
| } | ||
|
|
||
| <head> | ||
| <meta charset="UTF-8"> | ||
| <title>docsify</title> | ||
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | ||
| <meta name="viewport" content="width=device-width,initial-scale=1"> | ||
| <link rel="stylesheet" href="/themes/vue.css" title="vue"> | ||
| <link rel="stylesheet" href="/themes/dark.css" title="dark" disabled> | ||
| <link rel="stylesheet" href="/themes/buble.css" title="buble" disabled> | ||
| <link rel="stylesheet" href="/themes/pure.css" title="pure" disabled> | ||
| <script src="//cdn.jsdelivr.net/npm/docsify-plugin-carbon@1.0.1/index.min.js"></script> | ||
| <style> | ||
| nav.app-nav li ul { | ||
| min-width: 100px; | ||
| } | ||
| #carbonads { | ||
| box-shadow: none !important; | ||
| width: auto !important; | ||
| } | ||
| </style> | ||
| </head> | ||
|
|
||
| #carbonads { | ||
| box-shadow: none !important; | ||
| width: auto !important; | ||
| } | ||
| </style> | ||
| </head> | ||
| <body> | ||
| <div id="app"></div> | ||
| <script> | ||
| // Set html "lang" attribute based on URL | ||
| var lang = location.hash.match(/#\/(de-de|es|ru-ru|zh-cn)\//); | ||
|
|
||
| <body> | ||
| <div id="app"></div> | ||
| <script> | ||
| window.$docsify = { | ||
| alias: { | ||
| '.*?/awesome': 'https://raw.githubusercontent.com/docsifyjs/awesome-docsify/master/README.md', | ||
| '.*?/changelog': 'https://raw.githubusercontent.com/docsifyjs/docsify/master/CHANGELOG.md', | ||
| '/.*/_navbar.md': '/_navbar.md', | ||
| '/zh-cn/(.*)': 'https://cdn.jsdelivr.net/gh/docsifyjs/docs-zh@master/$1', | ||
| '/de-de/(.*)': 'https://raw.githubusercontent.com/docsifyjs/docs-de/master/$1', | ||
| '/ru-ru/(.*)': 'https://raw.githubusercontent.com/docsifyjs/docs-ru/master/$1', | ||
| '/es/(.*)': 'https://raw.githubusercontent.com/docsifyjs/docs-es/master/$1', | ||
| '/write-a-plugin': 'https://raw.githubusercontent.com/docsifyjs/docsify/master/docs/write-a-plugin.md' | ||
| }, | ||
| auto2top: true, | ||
| basePath: '/docs/', | ||
| coverpage: true, | ||
| executeScript: true, | ||
| loadSidebar: true, | ||
| loadNavbar: true, | ||
| mergeNavbar: true, | ||
| maxLevel: 4, | ||
| subMaxLevel: 2, | ||
| name: 'docsify', | ||
| search: { | ||
| noData: { | ||
| '/de-de/': 'Keine Ergebnisse!', | ||
| '/zh-cn/': '没有结果!', | ||
| '/': 'No results!' | ||
| }, | ||
| paths: 'auto', | ||
| placeholder: { | ||
| '/de-de/': 'Suche', | ||
| '/zh-cn/': '搜索', | ||
| '/': 'Search' | ||
| if (lang) { | ||
| document.documentElement.setAttribute('lang', lang[1]); | ||
| } | ||
|
|
||
| // Docsify configuration | ||
| window.$docsify = { | ||
| alias: { | ||
| '.*?/awesome': | ||
| 'https://raw.githubusercontent.com/docsifyjs/awesome-docsify/master/README.md', | ||
| '.*?/changelog': | ||
| 'https://raw.githubusercontent.com/docsifyjs/docsify/master/CHANGELOG.md', | ||
| '/.*/_navbar.md': '/_navbar.md', | ||
| '/es/(.*)': | ||
| 'https://raw.githubusercontent.com/docsifyjs/docs-es/master/$1', | ||
| '/de-de/(.*)': | ||
| 'https://raw.githubusercontent.com/docsifyjs/docs-de/master/$1', | ||
| '/ru-ru/(.*)': | ||
| 'https://raw.githubusercontent.com/docsifyjs/docs-ru/master/$1', | ||
| '/zh-cn/(.*)': | ||
| 'https://cdn.jsdelivr.net/gh/docsifyjs/docs-zh@master/$1', | ||
| }, | ||
| pathNamespaces: ['/zh-cn', '/de-de', '/ru-ru', '/es'] | ||
| }, | ||
| plugins: [ | ||
| DocsifyCarbon.create('CEBI6KQE', 'docsifyjsorg'), | ||
| function (hook, vm) { | ||
| hook.beforeEach(function (html) { | ||
| if (/githubusercontent\.com/.test(vm.route.file)) { | ||
| url = vm.route.file | ||
| .replace('raw.githubusercontent.com', 'github.com') | ||
| .replace(/\/master/, '/blob/master') | ||
| } else if (/jsdelivr\.net/.test(vm.route.file)) { | ||
| url = vm.route.file | ||
| .replace('cdn.jsdelivr.net/gh', 'github.com') | ||
| .replace('@master', '/blob/master') | ||
| } else { | ||
| url = 'https://github.com/docsifyjs/docsify/blob/master/docs/' + vm.route.file | ||
| } | ||
| var editHtml = '[:memo: Edit Document](' + url + ')\n' | ||
| return editHtml | ||
| + html | ||
| + '\n\n----\n\n' | ||
| + '<a href="https://docsify.js.org" target="_blank" style="color: inherit; font-weight: normal; text-decoration: none;">Powered by docsify</a>' | ||
| }) | ||
| auto2top: true, | ||
| basePath: '/docs/', | ||
| coverpage: true, | ||
| executeScript: true, | ||
| loadSidebar: true, | ||
| loadNavbar: true, | ||
| mergeNavbar: true, | ||
| maxLevel: 4, | ||
| subMaxLevel: 2, | ||
| name: 'docsify', | ||
| search: { | ||
| noData: { | ||
| '/es/': '¡No hay resultados!', | ||
| '/de-de/': 'Keine Ergebnisse!', | ||
| '/ru-ru/': 'Никаких результатов!', | ||
| '/zh-cn/': '没有结果!', | ||
| '/': 'No results!', | ||
| }, | ||
| paths: 'auto', | ||
| placeholder: { | ||
| '/es/': 'Buscar', | ||
| '/de-de/': 'Suche', | ||
| '/ru-ru/': 'Поиск', | ||
| '/zh-cn/': '搜索', | ||
| '/': 'Search', | ||
| }, | ||
| // pathNamespaces: ['/es', '/de-de', '/ru-ru', '/zh-cn'] | ||
| }, | ||
| ] | ||
| } | ||
| </script> | ||
| <script src="/lib/docsify.js"></script> | ||
| <script src="/lib/plugins/search.js"></script> | ||
| <script src="/lib/plugins/emoji.js"></script> | ||
| <script src="/lib/plugins/front-matter.js"></script> | ||
| <script src="//cdn.jsdelivr.net/npm/prismjs/components/prism-bash.min.js"></script> | ||
| <script src="//cdn.jsdelivr.net/npm/prismjs/components/prism-markdown.min.js"></script> | ||
| <script src="//cdn.jsdelivr.net/npm/prismjs/components/prism-nginx.min.js"></script> | ||
| <script src="//cdn.jsdelivr.net/npm/prismjs/components/prism-php.min.js"></script> | ||
| </body> | ||
|
|
||
| plugins: [ | ||
| DocsifyCarbon.create('CEBI6KQE', 'docsifyjsorg'), | ||
| function(hook, vm) { | ||
| hook.beforeEach(function(html) { | ||
| if (/githubusercontent\.com/.test(vm.route.file)) { | ||
| url = vm.route.file | ||
| .replace('raw.githubusercontent.com', 'github.com') | ||
| .replace(/\/master/, '/blob/master'); | ||
| } else if (/jsdelivr\.net/.test(vm.route.file)) { | ||
| url = vm.route.file | ||
| .replace('cdn.jsdelivr.net/gh', 'github.com') | ||
| .replace('@master', '/blob/master'); | ||
| } else { | ||
| url = | ||
| 'https://github.com/docsifyjs/docsify/blob/master/docs/' + | ||
| vm.route.file; | ||
| } | ||
| var editHtml = '[:memo: Edit Document](' + url + ')\n'; | ||
| return ( | ||
| editHtml + | ||
| html + | ||
| '\n\n----\n\n' + | ||
| '<a href="https://docsify.js.org" target="_blank" style="color: inherit; font-weight: normal; text-decoration: none;">Powered by docsify</a>' | ||
| ); | ||
| }); | ||
| }, | ||
| ], | ||
| }; | ||
| </script> | ||
| <script src="/lib/docsify.js"></script> | ||
| <script src="/lib/plugins/search.js"></script> | ||
| <script src="/lib/plugins/emoji.js"></script> | ||
| <script src="/lib/plugins/front-matter.js"></script> | ||
| <script src="//cdn.jsdelivr.net/npm/prismjs/components/prism-bash.min.js"></script> | ||
| <script src="//cdn.jsdelivr.net/npm/prismjs/components/prism-markdown.min.js"></script> | ||
| <script src="//cdn.jsdelivr.net/npm/prismjs/components/prism-nginx.min.js"></script> | ||
| <script src="//cdn.jsdelivr.net/npm/prismjs/components/prism-php.min.js"></script> | ||
| </body> | ||
| </html> | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.