mkdocs.yml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. site_name: Implementando um jogador para Liga4
  2. theme:
  3. feature:
  4. tabs: true
  5. name: material
  6. docs_dir: content
  7. site_dir: docs
  8. site_url: https://fbarth.github.io/Connect4-Python/
  9. repo_name: "Connect4-Python"
  10. repo_url: https://github.com/fbarth/Connect4-Python
  11. edit_uri: edit/main/content/
  12. nav:
  13. - Introdução: index.md
  14. - Jogando entre humanos: parte1.md
  15. - Colocando um robô na partida: parte2.md
  16. - Implementando um jogador de verdade: parte3.md
  17. - Implementando um robô ainda melhor: parte4.md
  18. - Algoritmo Min-Max (parte 1): parte5.md
  19. - Algoritmo Min-Max (parte 2): parte6.md
  20. - Máquina contra máquina: parte7.md
  21. - Um pouco de história e tendências: parte8.md
  22. - Instalação e configuração: configuracao.md
  23. - Min-Max com poda alpha-beta: alpha_beta.md
  24. - Material adicional: slides.md
  25. extra_javascript:
  26. - https://cdnjs.cloudflare.com/ajax/libs/js-yaml/4.0.0/js-yaml.min.js
  27. - js/markdown-enhancer.js
  28. markdown_extensions:
  29. - admonition
  30. - markdown.extensions.admonition
  31. - pymdownx.tasklist:
  32. custom_checkbox: true
  33. - pymdownx.details
  34. - pymdownx.tabbed
  35. - pymdownx.superfences
  36. - pymdownx.magiclink
  37. - pymdownx.critic:
  38. mode: view
  39. - pymdownx.betterem:
  40. smart_enable: all
  41. - pymdownx.caret
  42. - pymdownx.mark
  43. - pymdownx.tilde
  44. - pymdownx.smartsymbols
  45. - pymdownx.emoji:
  46. emoji_generator: !!python/name:pymdownx.emoji.to_svg
  47. - attr_list
  48. - pymdownx.superfences
  49. - pymdownx.arithmatex:
  50. generic: true
  51. extra_javascript:
  52. - javascripts/mathjax.js
  53. - https://polyfill.io/v3/polyfill.min.js?features=es6
  54. - https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
  55. plugins:
  56. - git-revision-date-localized
  57. # - active-exercises:
  58. # report_url: http://localhost:8000/api/offerings/1/exercises/