index.js 542 B

12345678910111213141516171819202122232425262728
  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.md'
  13. },
  14. {
  15. title: "约定",
  16. path: '/standard/appoint.md'
  17. },
  18. {
  19. title: "git 提交规范",
  20. path: '/standard/git.md'
  21. },
  22. {
  23. title: "typescript 自动生成 api 文档规范",
  24. path: '/standard/typedoc.md'
  25. },
  26. ];
  27. module.exports = content;