mkdocs.yml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. site_name: MinerU
  2. site_url: https://sidney233.github.io/MinerU/
  3. theme:
  4. name: material
  5. palette:
  6. # Palette toggle for automatic mode
  7. - media: "(prefers-color-scheme)"
  8. scheme: default
  9. primary: black
  10. toggle:
  11. icon: material/brightness-auto
  12. name: Switch to light mode
  13. # Palette toggle for light mode
  14. - media: "(prefers-color-scheme: light)"
  15. scheme: default
  16. primary: black
  17. toggle:
  18. icon: material/brightness-7
  19. name: Switch to dark mode
  20. # Palette toggle for dark mode
  21. - media: "(prefers-color-scheme: dark)"
  22. scheme: slate
  23. primary: black
  24. toggle:
  25. icon: material/brightness-4
  26. name: Switch to system preference
  27. features:
  28. - content.tabs.link
  29. - content.code.annotate
  30. - content.code.copy
  31. - navigation.instant
  32. - navigation.instant.progress
  33. - navigation.tabs
  34. - navigation.tabs.sticky
  35. - navigation.sections
  36. - navigation.path
  37. - navigation.indexes
  38. nav:
  39. - Home:
  40. - "MinerU": index.md
  41. - Quick Start:
  42. - quick_start/index.md
  43. - Online Demo: quick_start/online_demo.md
  44. - Local Deployment: quick_start/local_deployment.md
  45. - Usage:
  46. - usage/index.md
  47. - API Calls or Visual Invocation: usage/api.md
  48. - Extending MinerU Functionality Through Configuration Files: usage/config.md
  49. - FAQ: FAQ.md
  50. - Output File Format: output_file.md
  51. plugins:
  52. - i18n:
  53. docs_structure: folder
  54. languages:
  55. - locale: en
  56. default: true
  57. name: English
  58. build: true
  59. - locale: zh
  60. name: 中文
  61. build: true
  62. nav_translations:
  63. Home: 主页
  64. Quick Start: 快速开始
  65. Online Demo: 在线体验
  66. Local Deployment: 本地部署
  67. Usage: 使用方法
  68. API Calls or Visual Invocation: API 调用 或 可视化调用
  69. Extending MinerU Functionality Through Configuration Files: 基于配置文件扩展 MinerU 功能
  70. FAQ: 常见问题
  71. Output File Format: 输出文件格式
  72. - mkdocs-video
  73. markdown_extensions:
  74. - gfm_admonition
  75. - pymdownx.highlight:
  76. use_pygments: true
  77. - pymdownx.superfences