-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
52 lines (51 loc) · 1.68 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
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 © 2019, Shawn Biddle
site_author: Shawn Biddle
docs_dir: docs
site_dir: ../site
repo_url: https://github.com/RanvierMUD/ranviermud
theme:
name: null
custom_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:
- Home: 'index.md'
- Getting Started: 'get_started.md'
- Bundle Guide: 'bundles.md'
- Building:
- Creating an Area: 'building/index.md'
- Items: 'building/items.md'
- NPCs: 'building/npcs.md'
- Rooms: 'building/rooms.md'
- Quests: 'building/quests.md'
- Scripting: 'building/scripting.md'
- Coding:
- Attributes: 'coding/attributes.md'
- Server Events: 'coding/server.md'
- Channels: 'coding/channels.md'
- Classes/Abilities: 'coding/classes.md'
- Commands: 'coding/commands.md'
- Effects: 'coding/effects.md'
- Player/Input Events: 'coding/input_events.md'
- From Scratch: 'coding/from_scratch.md'
- Extending:
- Entity Loaders: 'extending/entity_loaders.md'
- Networking: 'extending/networking.md'
- Community Bundles: 'community_bundles.md'
- Release Notes: 'release_notes.md'
- Contributing: 'contributing.md'
- License/Credits: 'license.md'