You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.7 KiB
HTML
56 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Document</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
<meta name="description" content="Description">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
|
<!-- <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css"> -->
|
|
<link rel="stylesheet" href="https://unpkg.com/docsify@4.13.1/lib/themes/vue.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div data-app id="app"></div>
|
|
<script>
|
|
window.$docsify = {
|
|
name: '',
|
|
// alias: {
|
|
// // '/.*/_sidebar.md': '/_sidebar.md'
|
|
// },
|
|
nativeEmoji: true,
|
|
loadSidebar: true,
|
|
subMaxLevel: 1,
|
|
auto2top: true,
|
|
repo: '',
|
|
el: '#app',
|
|
markdown: {
|
|
renderer: {
|
|
text: function (text) {
|
|
if (/^==/g.test(text)) {
|
|
const escapedText = text.toLowerCase().replace(/^==|==$/g, '');
|
|
return `<mark>${escapedText}</mark>`;
|
|
}
|
|
if (/^\%{2}/gm.test(text)) {
|
|
return `<!--`;
|
|
}
|
|
if (/\%{2}$/gm.test(text)) {
|
|
return `-->`;
|
|
}
|
|
return text;
|
|
},
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
<!-- Docsify v4 -->
|
|
<!-- <script src="//cdn.jsdelivr.net/npm/docsify@4"></script> -->
|
|
<script src="https://unpkg.com/docsify@4.13.1/lib/docsify.min.js"></script>
|
|
<!-- <script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/zoom-image.min.js"></script> -->
|
|
<script src="https://unpkg.com/docsify@4.13.1/lib/plugins/zoom-image.min.js"></script>
|
|
<!-- <script src="https://unpkg.com/@h-hg/docsify-image-caption/dist/docsify-image-caption.min.js"></script> -->
|
|
</body>
|
|
|
|
</html>
|