-
Notifications
You must be signed in to change notification settings - Fork 15
/
mkdocs.yml
87 lines (79 loc) · 2.29 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
site_name: Ralph
site_url: https://openfun.github.io/ralph/
site_description: A learning events processor to feed your LRS
site_author: Open FUN (France Universite Numerique)
repo_name: openfun/ralph
repo_url: https://github.com/openfun/ralph/
copyright: 2020-present France Université Numérique
theme:
custom_dir: docs/theme
name: material
palette:
primary: pink
favicon: img/favicon.png
logo: img/ralph-white.png
features:
- content.code.annotate
- content.code.copy
- content.tabs.link
- navigation.indexes
- navigation.tabs
markdown_extensions:
- admonition
- attr_list
- mkdocs_click
- smarty
- toc:
permalink: True
separator: "_"
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
nav:
- Ralph: index.md
- Features:
- LRS HTTP server: features/api.md
- Backends for data storage: features/backends.md
- Learning statements models: features/models.md
- Tutorials:
- Ralph CLI Guide: tutorials/cli.md
- Ralph LRS Guide:
- tutorials/lrs/index.md
- tutorials/lrs/first-steps.md
- Authentication:
- tutorials/lrs/authentication/index.md
- tutorials/lrs/authentication/basic.md
- tutorials/lrs/authentication/oidc.md
- tutorials/lrs/backends.md
- tutorials/lrs/multitenancy.md
- Additional configurations:
- tutorials/lrs/forwarding.md
- tutorials/lrs/sentry.md
- Ralph Library Guide: tutorials/library.md
- Ralph Helm chart: tutorials/helm.md
- Development Guide: tutorials/development_guide.md
- Contributing: contribute.md
- Migration: UPGRADE.md
- About the project:
- Changelog: CHANGELOG.md
- License: LICENSE.md
plugins:
- neoteroi.mkdocsoad:
use_pymdownx: true
- search
- mkdocstrings
- mike:
canonical_version: latest
version_selector: true
extra:
version:
provider: mike
extra_css:
- css/mkdocsoad.css