forked from ikrima/gamedevguide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
182 lines (166 loc) · 4.08 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
# Project information
site_name: Gamedev Guide
site_description: >-
Gamedev Guide: Programming with Unreal Engine, Houdini, Math, & Graphics
site_author: ikrimae
site_url: https://ikrima.dev/
# Repository
repo_name: ikrima/gamedevguide
repo_url: "https://github.com/ikrima/gamedevguide/"
# Copyright
copyright: Copyright © 2016 - 2022 ikrima
# Configuration
docs_dir: content
use_directory_urls: true
strict: true
# nav:
# - Home: index.md
# - Open Source: opensource/index.md
# - UE4: ue4guide/
# - Math:
# - Research Notes: math/research-notes/spectral-theory.md
# - Graphics: graphics/index
# - Houdini: houdini/index.md
# - Programming: programming/index.md
# - Computational Geometry: computational-geometry/chicken-scratch-notes.md
# - Blog: blog/index.md
# Theme Config
# ----------- begin mkdocs-material -----------
theme:
name: material
# custom_dir: themes/material/material
language: en
features:
- navigation.tabs
- navigation.top
- navigation.instant
- search.suggest
- search.highlight
# - navigation.expand
# - toc.integrate
# - navigation.indexes
palette:
scheme: ayu
# primary: indigo
# accent: indigo
# - scheme: default
# primary: indigo
# accent: indigo
# toggle:
# icon: material/toggle-switch-off-outline
# name: Switch to dark mode
# - scheme: slate
# primary: indigo
# accent: indigo
# toggle:
# icon: material/toggle-switch
# name: Switch to light mode
font:
text: Open Sans
code: Source Code Pro
# text: Roboto
# code: Roboto Mono
# text: Open Sans
# code: Hack
# icon:
# logo: logo
# favicon: _sitefiles/favicon.png
# Extras
extra:
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/ikrima
- icon: fontawesome/brands/twitter
link: https://twitter.com/ikrimae
- icon: fontawesome/brands/linkedin
link: https://linkedin.com/in/ikrima
analytics:
provider: google
property: G-VWCEPP5L4L
# Plugins
plugins:
- search:
separator: '[\s\-\.\_]+'
- git-revision-date-localized
- awesome-pages:
collapse_single_pages: false
- progress
# - minify:
# minify_html: true
# Extensions
markdown_extensions:
- smarty
- sane_lists
- admonition
- toc:
permalink: "#"
toc_depth: 6
- pymdownx.highlight:
pygments_style: solarized-dark
guess_lang: true
- pymdownx.inlinehilite
# - markdown_katex:
# no_inline_svg: True
# insert_fonts_css: True
# # macro-file: macros.tex
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink:
repo_url_shorthand: true
user: ikrima
repo: gamedevguide
- pymdownx.mark
# - pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tilde
# Builtins
- markdown.extensions.attr_list
- markdown.extensions.def_list
- markdown.extensions.footnotes
- markdown.extensions.meta
# - pymdownx.keys
# - pymdownx.snippets:
# check_paths: true
extra_javascript:
- _sitefiles/katex/katex.min.js
- _sitefiles/arithmatex-katex.js
extra_css:
- _sitefiles/katex/katex.min.css
- _sitefiles/mkdocs-extra.css
# ----------- end mkdocs-material -----------
# ----------- begin cinder -----------
# theme:
# name: null
# custom_dir: themes/cinder/cinder
# colorscheme: atom-one-dark-reasonable
# highlightjs: true
# hljs_languages:
# - nim
# google_analytics: ['UA-47614715-1', 'ikrima.dev']
# shortcuts:
# help: 191
# next: 39
# previous: 37
# search: 83
# markdown_extensions:
# - smarty
# - sane_lists
# - admonition
# - toc:
# permalink: "#"
# - codehilite:
# guess_lang: false
# ----------- end cinder -----------