您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。

4 年前
4 年前
4 年前
123456789101112131415161718192021222324252627282930
  1. project = "Programmation en Python"
  2. copyright = "2020, Dimitri Merejkowsky"
  3. author = "Dimitri Merejkowsky - Contenu placé sous licence CC BY 4.0"
  4. version = "0.3"
  5. language = "fr"
  6. copyright = "CC BY 4.0"
  7. templates_path = ["_templates"]
  8. exclude_patterns = []
  9. keep_warnings = True
  10. extensions = [
  11. "notfound.extension",
  12. ]
  13. notfound_context = {
  14. "title": "Page non trouvée",
  15. "body": "<h1>Page non trouvée</h1>",
  16. }
  17. notfound_urls_prefix = "/python/"
  18. html_show_sourcelink = False
  19. html_show_copyright = False
  20. html_theme = "sphinx_book_theme"
  21. # Don't use default "<project> <version> documentation"
  22. html_title = project
  23. html_static_path = ["_static"]
  24. html_use_index = False