index.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Document</title>
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
  7. <meta name="description" content="Description">
  8. <meta name="viewport"
  9. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  10. <link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
  11. </head>
  12. <body>
  13. <div id="app"></div>
  14. <script src="//unpkg.com/docsify-edit-on-github/index.js"></script>
  15. <script>
  16. window.$docsify = {
  17. name: '',
  18. repo: '',
  19. loadSidebar: true,
  20. coverpage: true,
  21. subMaxLevel: 2,
  22. maxLevel: 4,
  23. search: {
  24. noData: "没有结果",
  25. paths: 'auto',
  26. placeholder: "搜索",
  27. hideOtherSidebarContent: true, // whether or not to hide other sidebar content
  28. },
  29. plugins: [
  30. EditOnGithubPlugin.create("https://github.com/cnlh/nps/tree/master/docs/", "", "在github上编辑"),
  31. ]
  32. }
  33. </script>
  34. <script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
  35. <script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
  36. <script src="//unpkg.com/docsify-copy-code"></script>
  37. </body>
  38. </html>