mkdocs.yml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. site_name: Rojo Documentation
  2. site_description: Documentation home Rojo, a tool for enabling professional development tools on Roblox.
  3. site_url: https://rojo.space/docs
  4. repo_name: rojo-rbx/rojo.space
  5. repo_url: https://github.com/rojo-rbx/rojo.space
  6. theme:
  7. name: material
  8. palette:
  9. primary: 'Red'
  10. accent: 'Red'
  11. nav:
  12. - Home: index.md
  13. - Why Rojo?: why-rojo.md
  14. - Get Help with Rojo: help.md
  15. - Rojo Alternatives: rojo-alternatives.md
  16. - Installing Rojo: installation.md
  17. - Rojo 0.5.x:
  18. - Guide:
  19. - Creating a Game with Rojo: 0.5.x/guide/new-game.md
  20. - Porting an Existing Game to Rojo: 0.5.x/guide/existing-game.md
  21. - Migrating from 0.4.x to 0.5.x: 0.5.x/guide/migrating-to-epiphany.md
  22. - Reference:
  23. - Fully vs Partially Managed Rojo: 0.5.x/reference/full-vs-partial.md
  24. - Project Format: 0.5.x/reference/project-format.md
  25. - Sync Details: 0.5.x/reference/sync-details.md
  26. - Rojo Internals:
  27. - Internals Overview: 0.5.x/internals/overview.md
  28. - Rojo 0.4.x:
  29. - Getting Started:
  30. - Creating a Project: 0.4.x/getting-started/creating-a-project.md
  31. - Sync Details: 0.4.x/sync-details.md
  32. plugins:
  33. - search
  34. - redirects:
  35. redirect_maps:
  36. 'latest/index.md': https://rojo.space/docs/
  37. '0.5.x/index.md': https://rojo.space/docs/
  38. '0.4.x/index.md': https://rojo.space/docs/
  39. '0.5.x/why-rojo.md': https://rojo.space/docs/why-rojo/
  40. '0.4.x/why-rojo.md': https://rojo.space/docs/why-rojo/
  41. '0.5.x/help.md': https://rojo.space/docs/help/
  42. '0.5.x/rojo-alternatives.md': https://rojo.space/docs/rojo-alternatives/
  43. '0.5.x/guide/installation.md': https://rojo.space/docs/installation/
  44. '0.4.x/getting-started/installation.md': https://rojo.space/docs/installation/
  45. extra_css:
  46. - extra.css
  47. markdown_extensions:
  48. - attr_list
  49. - admonition
  50. - codehilite:
  51. guess_lang: false
  52. - toc:
  53. permalink: true