This repository has been archived by the owner on Jul 25, 2021. It is now read-only.
forked from Berserk-Games/Tabletop-Simulator-API
-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
105 lines (98 loc) · 2.66 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
100
101
102
103
104
105
site_name: Tabletop Simulator API
theme:
name: 'material'
palette:
primary: 'indigo'
accent: 'indigo'
logo: 'img/TSIcon.png'
favicon: 'img/Icon-Dice.png'
custom_dir: 'theme'
extra_css:
- css/theme.css
- css/table.css
- css/type_icons.css
- css/i_icons.css
- css/player_color_table.css
extra_javascript:
- js/redirect.js
markdown_extensions:
- admonition
- codehilite
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- 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
- toc:
permalink: "\u0020"
repo_name: 'GitHub Source'
repo_url: 'https://github.com/tts-community/api'
extra:
social:
- type: 'reddit'
link: 'https://www.reddit.com/r/tabletopsimulator/'
- type: 'twitter'
link: 'https://twitter.com/tabletopsim'
- type: 'facebook'
link: 'https://www.facebook.com/tabletopsimulator'
- type: 'youtube'
link: 'https://www.youtube.com/user/berserkgames'
nav:
- 'Getting Started':
- 'Introduction': index.md
- 'Overview': overview.md
- 'Atom': atom.md
- 'External Editor API': externaleditorapi.md
- 'Learning Lua': learninglua.md
- 'System Console': systemconsole.md
- 'Virtual Reality': vr.md
- 'Patch Notes': 'https://www.tabletopsimulator.com/news/patch-notes'
- 'Scripting API':
- 'Introduction': intro.md
- 'Types': types.md
- 'Base': base.md
- 'Event': event.md
- 'Object': object.md
- 'Object Component': component.md
- 'AssetBundle': assetbundle.md
- 'Book': book.md
- 'Browser': browser.md
- 'Built-in Object': built-in-object.md
- 'Clock': clock.md
- 'Color': color.md
- 'Counter': counter.md
- 'Custom Game Objects' : custom-game-objects.md
- 'Grid': grid.md
- 'JSON': json.md
- 'Lighting': lighting.md
- 'Music Player': musicplayer.md
- 'Notes': notes.md
- 'Physics': physics.md
- 'Player': player.md
- 'Player Color': player-color.md
- 'RPGFigurine': rpgfigurine.md
- 'TextTool': texttool.md
- 'Time': time.md
- 'Turns': turns.md
- 'UI': ui.md
- 'Vector': vector.md
- 'Wait': wait.md
- 'Web Request': webrequest.md
- 'UI API':
- 'Introduction': ui/introUI.md
- 'Attributes': ui/attributes.md
- 'Basic Elements': ui/basicelements.md
- 'Input Elements': ui/inputelements.md
- 'Layout/Grouping': ui/layoutgrouping.md
- 'Defaults': ui/defaults.md