-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmkdocs.yml
More file actions
78 lines (72 loc) · 1.73 KB
/
mkdocs.yml
File metadata and controls
78 lines (72 loc) · 1.73 KB
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
site_name: ELP Parser
site_description: A PHP library for parsing ELP (eXe Learning Package) files
site_author: CEDEC
repo_url: https://github.com/exelearning/elp-parser
edit_uri: edit/main/docs/
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/exelearning/elp-parser
theme:
name: material
repo_branch: main
highlightjs: true
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tooltips
- navigation.indexes
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- search.highlight
- search.suggest
- toc.follow
- header.autohide
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep purple
accent: pink
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep purple
accent: cyan
toggle:
icon: material/weather-night
name: Switch to system preference
footer:
text: "ELP Parser - A project by CEDEC"
nav:
- Home: index.md
- API Reference: api.md
markdown_extensions:
- pymdownx.highlight:
use_pygments: true
pygments_lang_class: true
pygments_style: monokai
- pymdownx.superfences
- pymdownx.details
- pymdownx.critic
- pymdownx.betterem
- admonition
- codehilite
plugins:
- search
- minify:
minify_html: true
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn