mirror of
https://github.com/docsifyjs/docsify.git
synced 2026-01-18 15:13:00 +00:00
Playwright had some in-range breaking changes (regressions): https://github.com/microsoft/playwright/issues/10819 and https://github.com/microsoft/playwright/issues/11570 Playwright tests need to `await onceRendered()` after each route navigation to wait for render to finish before testing the state of the rendered DOM. Tests were flaky because they were looking for DOM before render finished (sometimes). Additionally, this fixes one test that was failing only locally, but not in CI, due to a RegExp check against page.url() (not sure why it would differ on CI vs local, but now the URL is explicit).
151 lines
5.5 KiB
HTML
151 lines
5.5 KiB
HTML
<!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 />
|
|
<style>
|
|
nav.app-nav li ul {
|
|
min-width: 100px;
|
|
}
|
|
|
|
#carbonads {
|
|
box-shadow: none !important;
|
|
width: auto !important;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
<script src="//cdn.jsdelivr.net/npm/docsify-plugin-carbon@1/index.min.js"></script>
|
|
<script>
|
|
// Set html "lang" attribute based on URL
|
|
var lang = location.hash.match(/#\/(de-de|es|ru-ru|zh-cn)\//);
|
|
|
|
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',
|
|
},
|
|
auto2top: true,
|
|
basePath: '/docs/',
|
|
coverpage: true,
|
|
executeScript: true,
|
|
loadSidebar: true,
|
|
loadNavbar: true,
|
|
mergeNavbar: true,
|
|
maxLevel: 4,
|
|
subMaxLevel: 2,
|
|
name: 'docsify',
|
|
nameLink: {
|
|
'/es/': '#/es/',
|
|
'/de-de/': '#/de-de/',
|
|
'/ru-ru/': '#/ru-ru/',
|
|
'/zh-cn/': '#/zh-cn/',
|
|
'/': '#/',
|
|
},
|
|
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'],
|
|
},
|
|
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/develop/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>'
|
|
);
|
|
});
|
|
},
|
|
|
|
/**
|
|
* Docsify tests rely on this plugin.
|
|
*
|
|
* This plugin increments a `data-render-count="N"` attribute on the
|
|
* `<body>` element after each markdown page render. F.e.
|
|
* `data-render-count="1"`, `data-render-count="2"`, etc.
|
|
*
|
|
* The very first render from calling docsifyInit() will result in a
|
|
* value of 1. Each following render (f.e. from clicking a link) will
|
|
* increment once rendering of the new page is finished.
|
|
*
|
|
* We do this so that we can easily wait for a render to finish before
|
|
* testing the state of the render result, or else we'll have flaky
|
|
* tests (a "race condition").
|
|
*/
|
|
function RenderCountPlugin(hook) {
|
|
hook.init(() => {
|
|
document.body.dataset.renderCount = 0;
|
|
});
|
|
|
|
hook.doneEach(() => {
|
|
document.body.dataset.renderCount++;
|
|
});
|
|
},
|
|
],
|
|
};
|
|
</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>
|