mkdocs.yml 2.5 KB

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