index.js 783 B

123456789101112131415161718192021222324252627282930313233
  1. const content = [
  2. {
  3. title: '简介',
  4. path: '/standard/'
  5. },
  6. {
  7. title: "javascript",
  8. path: '/standard/javascript.md'
  9. },
  10. {
  11. title: "typescript",
  12. path: '/standard/typescript',
  13. children:[
  14. {title: "注释", path: '/standard/typescript/comment.md'},
  15. {title: "命名", path: '/standard/typescript/naming.md'},
  16. {title: "布局", path: '/standard/typescript/layout.md'},
  17. ]
  18. },
  19. {
  20. title: "约定",
  21. path: '/standard/appoint.md'
  22. },
  23. {
  24. title: "git 提交规范",
  25. path: '/standard/git.md'
  26. },
  27. {
  28. title: "typescript 自动生成 api 文档规范",
  29. path: '/standard/typedoc.md'
  30. },
  31. ];
  32. module.exports = content;