mkdocs.yml 2.1 KB

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