mkdocs.yml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. site_name: Pixelle-Video
  2. site_description: AI Video Creator - Generate a short video in 3 minutes
  3. site_author: Pixelle.AI
  4. site_url: https://AIDC-AI.github.io/Pixelle-Video/
  5. repo_name: AIDC-AI/Pixelle-Video
  6. repo_url: https://github.com/AIDC-AI/Pixelle-Video
  7. edit_uri: edit/main/docs/
  8. copyright: Copyright © 2025 Pixelle.AI
  9. theme:
  10. name: material
  11. language: en
  12. palette:
  13. # Light mode
  14. - media: "(prefers-color-scheme: light)"
  15. scheme: default
  16. primary: indigo
  17. accent: indigo
  18. toggle:
  19. icon: material/brightness-7
  20. name: Switch to dark mode
  21. # Dark mode
  22. - media: "(prefers-color-scheme: dark)"
  23. scheme: slate
  24. primary: indigo
  25. accent: indigo
  26. toggle:
  27. icon: material/brightness-4
  28. name: Switch to light mode
  29. font:
  30. text: Roboto
  31. code: Roboto Mono
  32. features:
  33. - navigation.instant # Instant loading
  34. - navigation.tracking # Anchor tracking
  35. - navigation.tabs # Top-level tabs
  36. - navigation.tabs.sticky # Sticky tabs
  37. - navigation.sections # Sidebar sections
  38. - navigation.expand # Expand sections
  39. - navigation.top # Back to top button
  40. - navigation.footer # Footer navigation
  41. - search.suggest # Search suggestions
  42. - search.highlight # Search highlighting
  43. - search.share # Share search results
  44. - content.code.copy # Copy button for code blocks
  45. - content.code.annotate # Code annotations
  46. - content.tabs.link # Link content tabs
  47. icon:
  48. repo: fontawesome/brands/github
  49. plugins:
  50. - search:
  51. lang:
  52. - en
  53. - zh
  54. - i18n:
  55. docs_structure: folder
  56. languages:
  57. - locale: en
  58. default: true
  59. name: English
  60. build: true
  61. - locale: zh
  62. name: 中文
  63. build: true
  64. nav_translations:
  65. Home: 首页
  66. Getting Started: 快速开始
  67. Installation: 安装
  68. Quick Start: 快速入门
  69. Configuration: 配置
  70. User Guide: 用户指南
  71. Web UI: Web 界面
  72. API Usage: API 使用
  73. Workflows: 工作流定制
  74. Templates: 模板开发
  75. Gallery: 示例库
  76. Tutorials: 教程
  77. Your First Video: 生成你的第一个视频
  78. Custom Style: 自定义视觉风格
  79. Voice Cloning: 声音克隆
  80. Reference: 参考
  81. API Overview: API 概览
  82. Config Schema: 配置文件详解
  83. Development: 开发指南
  84. Architecture: 架构设计
  85. Contributing: 贡献指南
  86. FAQ: 常见问题
  87. Troubleshooting: 故障排查
  88. - git-revision-date-localized:
  89. enable_creation_date: true
  90. type: datetime
  91. markdown_extensions:
  92. # Python Markdown
  93. - abbr
  94. - admonition
  95. - attr_list
  96. - def_list
  97. - footnotes
  98. - md_in_html
  99. - toc:
  100. permalink: true
  101. # Python Markdown Extensions
  102. - pymdownx.arithmatex:
  103. generic: true
  104. - pymdownx.betterem:
  105. smart_enable: all
  106. - pymdownx.caret
  107. - pymdownx.details
  108. - pymdownx.emoji:
  109. emoji_index: !!python/name:material.extensions.emoji.twemoji
  110. emoji_generator: !!python/name:material.extensions.emoji.to_svg
  111. - pymdownx.highlight:
  112. anchor_linenums: true
  113. line_spans: __span
  114. pygments_lang_class: true
  115. - pymdownx.inlinehilite
  116. - pymdownx.keys
  117. - pymdownx.mark
  118. - pymdownx.smartsymbols
  119. - pymdownx.superfences:
  120. custom_fences:
  121. - name: mermaid
  122. class: mermaid
  123. format: !!python/name:pymdownx.superfences.fence_code_format
  124. - pymdownx.tabbed:
  125. alternate_style: true
  126. - pymdownx.tasklist:
  127. custom_checkbox: true
  128. - pymdownx.tilde
  129. nav:
  130. - Home: index.md
  131. - Getting Started:
  132. - Installation: getting-started/installation.md
  133. - Quick Start: getting-started/quick-start.md
  134. - Configuration: getting-started/configuration.md
  135. - User Guide:
  136. - Web UI: user-guide/web-ui.md
  137. - API Usage: user-guide/api.md
  138. - Workflows: user-guide/workflows.md
  139. - Templates: user-guide/templates.md
  140. - Gallery: gallery/index.md
  141. - Tutorials:
  142. - Your First Video: tutorials/your-first-video.md
  143. - Custom Style: tutorials/custom-style.md
  144. - Voice Cloning: tutorials/voice-cloning.md
  145. - Reference:
  146. - API Overview: reference/api-overview.md
  147. - Config Schema: reference/config-schema.md
  148. - Development:
  149. - Architecture: development/architecture.md
  150. - Contributing: development/contributing.md
  151. - FAQ: faq.md
  152. - Troubleshooting: troubleshooting.md
  153. extra:
  154. social:
  155. - icon: fontawesome/brands/github
  156. link: https://github.com/AIDC-AI/Pixelle-Video
  157. name: GitHub Repository
  158. extra_css:
  159. - stylesheets/extra.css