@thingjs/xplugin-cli
Version:
UINO ThingJS-X 零代码平台插件二次开发脚手架,用于生成插件模板开发代码
104 lines (92 loc) • 3.66 kB
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<title>插件开发 API文档</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1.0, shrink-to-fit=no"
/>
<meta
name="description"
content="A demonstration of docsify-themable: a delightfully simple theme system for docsify.js"
/>
<!-- Stylesheets -->
<!-- <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css"> -->
<!-- 1. Theme -->
<!-- <link
rel="stylesheet"
href="https://unpkg.com/docsify-themeable/dist/css/theme-simple.css"
/> -->
<!-- <link rel="stylesheet" href="https://unpkg.com/docsify-themeable/dist/css/theme-simple-dark.css"> -->
<!-- <link rel="stylesheet" href="https://unpkg.com/docsify-themeable/dist/css/theme-defaults.css"> -->
<link rel="stylesheet" href="./lib/theme-simple-dark.css">
<!-- 2. PrismJS Themes -->
<!-- <link rel="stylesheet" href="https://unpkg.com/prism-github/prism-github.css"> -->
<!-- <link rel="stylesheet" href="https://unpkg.com/prism-theme-one-dark/prism-onedark.css"> -->
<link rel="stylesheet" href="./lib/prism-onedark.css">
<!-- 3. Custom Theme Properties -->
<style>
:root {
/* Reduce the font size */
/* --base-font-size: 14px; */
/* Change the theme color hue (0-360) */
/* --theme-hue: 335; */
/* Add sidebar navigation bullets */
--sidebar-width : 28rem;
/* --sidebar-nav-link-before-content-l1: "😀"; */
/* --sidebar-nav-link-before-content-l2: "💩"; */
--content-max-width : 85%;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
// 4. Docsify Configuration
window.$docsify = {
name: 'ThingJS-X 插件开发指南',
repo: 'https://github.com/GuangGuangZhang/xplugin-template',
homepage: "README.md",
coverpage: "coverpage.md",
// coverpage: false,
loadSidebar: true,
auto2top: true,
search: {
maxAge: 86400000, // 过期时间,单位毫秒,默认一天
placeholder: '请输入搜索内容',
noData: '未搜索到合适的结果',
// 搜索标题的最大层级, 1 - 6
depth: 3,
},
maxLevel: 4,
subMaxLevel: 4,
themeable: {
// readyTransition: true, // default
// responsiveTables: true // default
},
//https://jhildenbiddle.github.io/docsify-themeable/#/introduction
// docsify-copy-code (defaults)
copyCode: {
buttonText : '复制',
errorText : '复制发生错误',
successText: '复制成功'
}
}
</script>
<!-- Required: docsify + docsify-themeable -->
<script src="./lib/docsify.min.js"></script>
<script src="./lib/docsify-themeable.min.js"></script>
<!-- 6. Docsify Plugins -->
<!-- <script src="https://unpkg.com/docsify/lib/plugins/search.js"></script>
<script src="https://unpkg.com/docsify-copy-code"></script>
<script src="https://unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
<script src="https://unpkg.com/docsify/lib/plugins/zoom-image.min.js"></script>
-->
<script src="./lib/search.js"></script>
<script src="./lib/docsify-copy-code.min.js"></script>
<script src="./lib/docsify-pagination.min.js"></script>
<script src="./lib/zoom-image.min.js"></script>
</body>
</html>