-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
116 lines (108 loc) · 2.83 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
site_name: Facility Finder
site_description: |
This is the 'Facility Finder' project website for CPSC 444.
# repo_url: https://github.com/cynber/cs444-FacilityFinder/
# repo_name: cynber/cs444-FacilityFinder
plugins:
- git-revision-date-localized:
type: custom
custom_format: "Last updated: %B %d, %Y"
fallback_to_build_date: true
exclude:
- index.md
- blog/*
- search
# - privacy
- glightbox
# - social:
# cards_layout_options:
# font_family: Noto Sans
# enabled: !ENV [CI, false]
- blog:
post_readtime: true
archive: false
draft: true
categories: true
categories_name: Post Categories
categories_allowed:
- Project Update
- CPSC 444
nav:
- Home: index.md
- Blog:
- blog/index.md
- Guides:
- Modify this site:
- Overview: ./About/contribute-to-this.md
- Setup a new site:
- Installation: ./About/setup-guide.md
- Site Configuration: ./About/config-guide.md
- Blog Setup: ./About/blog-setup-config.md
- About:
- Credits: ./About/credits.md
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.arithmatex:
generic: true
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- sane_lists
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
theme:
name: material
language: en
favicon: assets/img/droplet-solid.svg
icon:
repo: fontawesome/brands/github
logo: fontawesome/solid/droplet
custom_dir: docs/overrides
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/link
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: indigo
toggle:
icon: material/weather-night
name: Switch to system preference
features:
- navigation.instant
- navigation.instant.progress
- navigation.tabs
- navigation.sections
- navigation.indexes
- search.suggest
- search.highlight
- content.code.copy
- content.code.select
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/cynber/cs444-FacilityFinder
generator: false