-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmkdocs.yml
85 lines (77 loc) · 2.42 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
# Project information
site_name: Guide du développeur Home Assistant
site_url: "https://developpeurs.hacf.fr/"
site_description: "Un guide en français pour ceux qui veulent contribuer au code de Home Assistant"
site_author: "HACF"
copyright: "Copyright 2020 - HACF. Creative Commons Zero v1.0 Universal."
# Repository
repo_url: "https://github.com/hacf-fr/homeassistant-guide-du-developpeur/"
edit_uri: ""
# Theme
theme:
name: material
language: fr
favicon: images/favicon-32x32.png
palette:
scheme: preference
primary: white
accent: red
logo: "https://hacf.fr/wp-content/uploads/Assets/HACF-Logo.svg"
features:
- navigation.tabs
- toc.integrate
# Customization
extra:
social:
- icon: fontawesome/brands/github-alt
link: "https://github.com/hacf-fr"
name: "L'organisation HACF sur GitHub"
- icon: fontawesome/brands/discourse
link: "https://forum.hacf.fr/"
name: "Le forum HACF"
- icon: fontawesome/brands/discord
link: "https://discord.gg/PaZFEjX"
name: "Le Discord HACF"
- icon: fontawesome/brands/wordpress
link: "https://www.hacf.fr"
name: "Le site de HACF"
- icon: fontawesome/brands/twitter
link: "https://twitter.com/hacf_fr"
name: "HACF sur Twitter"
- icon: fontawesome/brands/facebook
link: "https://www.facebook.com/groups/HomeAssistantFrance/"
name: "HACF sur Facebook"
- icon: fontawesome/brands/youtube
link: "https://www.youtube.com/channel/UCx4cKKRf1GW1AVQhtNU_3iw"
name: "HACF sur YouTube"
- icon: fontawesome/solid/bookmark
link: "https://awesome.hacf.fr"
name: "Awesome List: Nos meilleurs liens"
- icon: octicons/code-review-24
link: https://developpeurs.hacf.fr
name: "Guide du développeur Home Assistant"
# Plugins
plugins:
- search:
lang: fr
- simple:
# Extensions
# pymdownx.slugs.gfm needed to have the same behavior in static generated website
# and in GitHub for TOC anchor when title have unicode characters.
#
# mdx_truly_sane_lists to ensure the rendering of the nested bullet list.
markdown_extensions:
- toc:
permalink: true
slugify: !!python/name:pymdownx.slugs.gfm
- pymdownx.betterem:
smart_enable: all
- mdx_truly_sane_lists
# The pages to serve
nav:
- "Accueil": README.md
- "Documentation":
- "Le Backend": Backend.md
- "Le Frontend": Frontend.md
- "GitHub": GitHub.md
- "Contribuer": CONTRIBUTING.md