-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
83 lines (75 loc) · 1.86 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
# Project information
site_name: ''
site_description: 'Welcome to the Poké Devs. We develop some amazing Pokémon stuff.'
site_url: 'https://pokedevs.github.io/pokedevs-website'
site_author: 'Sankarsan Kampa'
# Repository
repo_name: 'pokedevs-website'
repo_url: 'https://github.com/PokeDevs/pokedevs-website'
edit_uri: edit/master/docs/
# Copyright
copyright: 'Copyright © 2017 - Sankarsan Kampa'
# Configuration
theme:
name: 'material'
custom_dir: 'theme'
feature:
tabs: true
palette:
primary: 'white'
accent: 'red'
language: 'en'
font:
text: 'Scope One'
code: 'Source Code Pro'
favicon: 'favicon.png'
logo: 'assets/images/pokedevs.png'
extra_css:
- 'assets/stylesheets/extra.css'
# Options
extra:
social:
- type: 'github'
link: 'https://github.com/PokeDevs'
- type: 'discord'
link: 'https://discord.gg/7P4H3TY'
# Extensions
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
linenums: true
- footnotes
- meta
- pymdownx.betterem(smart_enable=all)
- pymdownx.caret
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.tasklist(custom_checkbox=true)
- pymdownx.tilde
- toc:
permalink: '#'
- smarty
# Pages
pages:
- Pokédex API:
- Intro: 'index.md'
- Reference: 'reference.md'
- Usage Notes: 'usage_notes.md'
- Libraries: 'libraries.md'
- Resources:
- Pokémon: 'resources/pokemon.md'
- Categories: 'resources/categories.md'
- Egg Groups: 'resources/egg-groups.md'
- Evolution Stones: 'resources/evolution-stones.md'
- Leagues: 'resources/leagues.md'
- Types: 'resources/types.md'
- Meta: 'resources/meta.md'
- Information:
- About: 'about.md'
# Development
dev_addr: '0.0.0.0:201'