forked from itsaphel/vgl-docs
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
99 lines (93 loc) · 3.19 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
site_name: VoxelGamesLib Documentation
site_description: Developer and user documentation for VoxelGamesLib v2
site_author: VoxelGamesLib
site_url: 'https://voxelgameslib.com'
repo_name: 'VoxelGamesLib'
repo_url: 'https://github.com/VoxelGamesLib/VoxelGamesLibv2'
copyright: 'Copyright © 2016 - 2018 VoxelGamesLib, MiniDigger and Contributors'
theme:
name: 'material'
palette:
primary: 'amber'
accent: 'orange'
logo: 'images/logo.svg'
feature:
tabs: true
edit_uri: 'blob/master/docs/'
extra:
social:
- type: 'github'
link: 'https://s.minidigger.me/github'
- type: 'twitter'
link: 'https://s.minidigger.me/twitter'
- type: 'discord'
link: 'https://s.minidigger.me/discord'
google_analytics:
- 'UA-38006759-6'
- 'auto'
pages:
- Introduction: index.md
- General:
- Doctrine: general/doctrine.md
- Getting started: general/getting-started.md
- Terms: general/terms.md
- Components:
- General: components/general.md
- Features: components/features.md
- Phases: components/phases.md
- Games: components/games.md
- VictoryConditions: components/victoryconditions.md
- Mapper Area:
- Introduction: maps/introduction.md
- How to create a map: maps/how-to-create-a-map.md
- How to edit a map: maps/how-to-edit-a-map.md
- Designer Area:
- Index: designer-area/index.md
- Developer Area:
- How to write an addon: developer-area/how-to-write-an-addon.md
- How to write a feature: developer-area/how-to-write-a-feature.md
- How to write a phase: developer-area/how-to-write-a-phase.md
- How to write a game: developer-area/how-to-write-a-game.md
- Introduction to Guice: developer-area/introduction-to-guice.md
- APIs:
- Scoreboard API: developer-area/apis/scoreboard.md
- Kit API: developer-area/apis/kit.md
- Sign API: developer-area/apis/sign.md
- Elo API: developer-area/apis/elo.md
- Command API: developer-area/apis/command.md
- Ability API: developer-area/apis/ability.md
- i18n API: developer-area/apis/i18n.md
- Stats API: developer-area/apis/stats.md
- Contributor Area:
- General: contributor-area/general.md
- Contributors: contributor-area/contributors.md
- Contribute Code: contributor-area/contribute-code.md
- Contribute Maps: contributor-area/contribute-maps.md
- Contribute Translations: contributor-area/contribute-translations.md
- Create bug reports or feature requests: contributor-area/create-bug-reports-or-feature-requests.md
- Contributor's Corner: contributor-area/contributors-corner.md
- Test:
- Test: test/testpage.md
markdown_extensions:
# notes quotes etc
- admonition
# code highlights
- codehilite(linenums=true)
# footnotes
- footnotes
# table of contents, permalinks
- toc(permalink=true)
# bunch of random crap
- pymdownx.arithmatex
- pymdownx.betterem(smart_enable=all)
- pymdownx.caret
- pymdownx.critic
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist(custom_checkbox=true)
- pymdownx.tilde