2024-03-05 10:15:02 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
href="//cdn.jsdelivr.net/npm/docsify@4/themes/vue.css"
|
|
|
|
/>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="app"></div>
|
|
|
|
<script>
|
|
|
|
window.$docsify = {
|
2024-03-05 21:25:58 +00:00
|
|
|
name: 'Docs',
|
2024-03-05 19:13:39 +00:00
|
|
|
loadSidebar: true,
|
2024-03-05 23:03:16 +00:00
|
|
|
coverpage: true,
|
|
|
|
coverpage: '_coverpage.md',
|
|
|
|
onlyCover: false,
|
2024-03-07 20:20:55 +00:00
|
|
|
|
|
|
|
plugins: [
|
|
|
|
|
|
|
|
function (hook, vm) {
|
|
|
|
hook.beforeEach(function (html) {
|
|
|
|
|
|
|
|
// Remove any possible front matter with the delimiters '---'
|
|
|
|
if (html.startsWith("---")) {
|
|
|
|
html = html.replace(/---(.|\n)*?---/, '');
|
|
|
|
}
|
|
|
|
|
|
|
|
return html
|
|
|
|
|
|
|
|
});
|
|
|
|
},
|
|
|
|
],
|
|
|
|
|
2024-03-05 21:25:58 +00:00
|
|
|
|
2024-03-05 10:15:02 +00:00
|
|
|
};
|
|
|
|
</script>
|
|
|
|
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
|
2024-03-05 21:25:58 +00:00
|
|
|
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/search.js"></script>
|
2024-03-05 10:15:02 +00:00
|
|
|
</body>
|
|
|
|
</html>
|