-
Notifications
You must be signed in to change notification settings - Fork 38
/
mkdocs.yml
101 lines (93 loc) · 2.41 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
site_name: Simple and Fast Multimedia Library
site_url: https://www.sfml-dev.org
site_description: Simple and Fast Multimedia Library
docs_dir: pages
repo_url: https://github.com/SFML/SFML
repo_name: SFML
theme:
name: material
language: en
icon:
repo: fontawesome/brands/github
font:
text: Ubuntu
logo: images/logo.png
favicon: images/favicon.ico
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: light green
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: green
toggle:
icon: material/weather-sunny
name: Switch to light mode
features:
- content.code.copy
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.prune
- navigation.path
- navigation.indexes
- navigation.top
- navigation.footer
- toc.follow
- search.suggest
extra_css:
- styles/extra.css
extra:
social:
- icon: fontawesome/brands/mastodon
link: https://fosstodon.org/@sfml
name: SFML on Fosstodon
- icon: fontawesome/brands/twitter
link: https://twitter.com/sfmldev
name: SFML on Twitter
- icon: fontawesome/brands/bluesky
link: https://bsky.app/profile/sfml.bsky.social
name: SFML on Bluesky
- icon: fontawesome/brands/discord
link: https://discord.gg/nr4X7Fh
name: SFML's Discord Server
generator: false
copyright: Copyright © <a href="mailto:[email protected]">Laurent Gomila</a>
markdown_extensions:
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.snippets:
base_path: documentation
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- attr_list
- md_in_html
plugins:
- i18n:
docs_structure: suffix
languages:
- locale: en
default: true
name: English
build: true
- locale: fr
name: Français
build: true
- search
- literate-nav:
nav_file: navigation.md
implicit_index: false
tab_length: 4