-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathmkdocs.yml
39 lines (34 loc) · 966 Bytes
/
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
site_name: "SimplePath"
site_url: https://grayzcale.github.io/simplepath/
repo_url: https://github.com/grayzcale/simplepath
repo_name: grayzcale/simplepath
site_description: SimplePath is an open-source pathfinding module that gives you the ability to quickly create a pathfinding script for humanoids and non-humanoids with just a few lines of code.
# Local
# site_url:
# use_directory_urls: false
theme:
name: material
favicon: assets/logo.png
logo: assets/logo.png
features:
- content.code.annotate
palette:
- scheme: slate
accent: deep orange
extra_css:
- stylesheets/extra.css
nav:
- Home: index.md
- API Reference: api-reference.md
- Guides:
- Getting Started: guides/getting-started.md
- Examples:
- Humanoid: examples/humanoid.md
- Non-Humanoid: examples/non-humanoid.md
markdown_extensions:
- toc:
permalink: true
- pymdownx.superfences
- tables
- admonition
- pymdownx.inlinehilite