forked from ultrabug/mkdocs-static-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
42 lines (38 loc) · 1 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
site_name: MkDocs static i18n plugin demo
site_url: https://ultrabug.github.io/mkdocs-static-i18n
repo_url: https://github.com/ultrabug/mkdocs-static-i18n
theme:
name: material
font: false
icon:
logo: material/file-document-multiple
palette:
primary: blue
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/ultrabug/mkdocs-static-i18n
name: mkdocs-static-i18n on Github
markdown_extensions:
- admonition
plugins:
- search
- i18n:
default_language: !ENV [DEFAULT_LANGUAGE, "en"]
default_language_only: !ENV [DEFAULT_LANGUAGE_ONLY, false]
languages:
default:
name: Default (en)
build: true
en:
name: English
build: true
site_name: "MkDocs static i18n plugin demo (en)"
fr:
name: Français
build: true
site_name: "Démo du plugin MkDocs static i18n (fr)"
nav_translations:
fr:
Topic1: Sujet1
Topic2: Sujet2