index.js 853 B

12345678910111213141516171819202122232425262728293031323334
  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/tools.md'},
  16. {title: "命名", path: '/standard/typescript/naming.md'},
  17. {title: "布局", path: '/standard/typescript/layout.md'},
  18. ]
  19. },
  20. {
  21. title: "约定",
  22. path: '/standard/appoint.md'
  23. },
  24. {
  25. title: "git 提交规范",
  26. path: '/standard/git.md'
  27. },
  28. {
  29. title: "typescript 自动生成 api 文档规范",
  30. path: '/standard/typedoc.md'
  31. },
  32. ];
  33. module.exports = content;