index.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. loadNavbar: true,
  22. subMaxLevel: 2,
  23. maxLevel: 4,
  24. search: {
  25. noData: "没有结果",
  26. paths: 'auto',
  27. placeholder: "搜索",
  28. hideOtherSidebarContent: true, // whether or not to hide other sidebar content
  29. },
  30. plugins: [
  31. EditOnGithubPlugin.create("https://github.com/ehang-io/nps/tree/master/docs/", "", "在github上编辑"),
  32. ]
  33. }
  34. </script>
  35. <script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
  36. <script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
  37. <script src="//unpkg.com/docsify-copy-code"></script>
  38. </body>
  39. </html>