mirror of
https://github.com/zekexiao/pocketlang.git
synced 2025-02-06 12:46:53 +08:00
67 lines
2.1 KiB
HTML
67 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Pocketlag Docs</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 class="theme-light" rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css" disabled>
|
|
<link class="theme-light" rel="stylesheet" href="static/highlight.js/stackoverflow-light.min.css" disabled>
|
|
|
|
<link class="theme-dark" rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css">
|
|
<link class="theme-dark" rel="stylesheet" href="static/highlight.js/github-dark-dimmed.min.css">
|
|
|
|
<link rel="stylesheet" href="static/style.css">
|
|
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
|
|
<script src="static/highlight.js/highlight.min.js"></script>
|
|
<script src="static/main.js"></script>
|
|
|
|
<script>
|
|
window.$docsify = {
|
|
name: 'pocketlang docs',
|
|
repo: 'https://www.github.com/ThakeeNathees/pocketlang/',
|
|
loadSidebar: true,
|
|
|
|
search: {
|
|
depth : 3,
|
|
noData : 'No results!',
|
|
placeholder : 'Search...',
|
|
},
|
|
|
|
themeable: {
|
|
readyTransition : true,
|
|
responsiveTables: true,
|
|
},
|
|
|
|
plugins: [
|
|
function(hook, vm) {
|
|
hook.doneEach(function() {
|
|
document.querySelectorAll('pre code').forEach(function(el) {
|
|
let pre = el.parentElement;
|
|
if (pre.getAttribute('data-lang') == 'ruby') {
|
|
pre.setAttribute('data-lang', 'pocket');
|
|
}
|
|
hljs.highlightElement(el);
|
|
});
|
|
});
|
|
|
|
hook.ready(function() {
|
|
onDocsifyReady();
|
|
});
|
|
}
|
|
],
|
|
}
|
|
</script>
|
|
<!-- Docsify v4 -->
|
|
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/js/docsify-themeable.min.js"></script>
|
|
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
|
|
</body>
|
|
</html>
|