forked from RanvierMUD/ranviermud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
48 lines (47 loc) · 1.61 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
site_name: Ranvier
site_description: "Ranvier is a Node.js-based MUD codebase built for modularity, extensibility and getting up-and-running in the least amount of time possible."
copyright: Copyright © 2017, Shawn Biddle
site_author: Shawn Biddle
docs_dir: docs
repo_url: https://github.com/shawncplus/ranviermud
theme: null
theme_dir: docs/_mkdocs/theme/ranvier
extra:
logo: '_static/images/logo.png'
extra_css:
- _mkdocs/theme/ranvier/assets/stylesheets/application.css
- _mkdocs/theme/ranvier/assets/stylesheets/application.palette.css
markdown_extensions:
- def_list
- codehilite
- toc:
permalink: true
title: 'Contents'
- pymdownx.tasklist:
custom_checkbox: true
google_analytics: ["UA-28253658-1", "auto"]
pages:
- Overview: index.md
- Get Started: get_started.md
- Server Config: server_config.md
- Project Structure: structure.md
- Extending:
- Bundles: 'extending/bundles.md'
- Server: 'extending/server.md'
- Areas:
- Creating an Area: 'extending/areas/index.md'
- Items: 'extending/areas/items.md'
- NPCs: 'extending/areas/npcs.md'
- Rooms: 'extending/areas/rooms.md'
- Quests: 'extending/areas/quests.md'
- Scripting: 'extending/areas/scripting.md'
- Channels: 'extending/channels.md'
- Classes/Abilities: 'extending/classes.md'
- Commands: 'extending/commands.md'
- Effects: 'extending/effects.md'
- Helpfiles: 'extending/help.md'
- Player/Input Events: 'extending/input_events.md'
- Contributing: contributing.md
- Web API: api.md
- Common Issues: common_issues.md
- License/Credits: license.md