-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
mkdocs.yml
40 lines (35 loc) · 1023 Bytes
/
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
# Settings for mkdocs
# Where to find documentation
docs_dir: docs
# Link to Github on every page
repo_url: https://github.com/openfoodfacts/search-a-licious
edit_uri: blob/main/docs/
# add canonical url
site_url: https://openfoodfacts.github.io/search-a-licious
site_name: Search-a-licious documentation
site_dir: gh_pages
# Note see https://hub.docker.com/r/minidocks/mkdocs
# for available extensions
theme:
name: material
markdown_extensions:
- footnotes
# support tables
- tables
# this one allow to have two space indentation counts as nested list, as in github/vscode
- mdx_truly_sane_lists
# this one allow to start a list without first adding a blank line, as in github/vscode
- mdx_breakless_lists
- pymdownx.highlight
- pymdownx.superfences
- toc:
# add permalink after titles
permalink: "#"
plugins:
# thanks to this plugin, the .pages files will customize navigation entries
- awesome-pages
- search
- exclude:
glob:
- reports/
- "*_TODO.md"