docsify 是一個方便的線上文件建立工具,如果有相關需求的可以參考看看。
以下則是官方展示的一些使用該套件的網站:
- styled-wind - A magical implementation of tailwind-like classnames into styled-components.
- pyecharts - Documentation for pyecharts. A Python Echarts Plotting Library.
- gallery-pyecharts - A Data Visualization Gallery Based on pyecharts.
- Posthtml - Documentation for PostHTML, a tool to transform HTML/XML with JS plugins.
- Explore Wanchain - Documentation for Wanchain, a blockchain with smart contracts, private transactions, and cross-chain features.
- Laravel SweetAlert2 - Documentation for Laravel SweetAlert2, A beautiful, responsive, highly customizable and accessible (WAI-ARIA) replacement for JavaScript's popup boxes for Laravel.
- Security List - A series of personal cyber security tools, resources and checklists.
- Snipaste - Snip & Paste.
可以透過 npm 安裝
npm i docsify-cli -g
或是使用以下樣板開始
<!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 = {
//...
}
</script>
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
</body>
</html>