-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmkdocs.yml
89 lines (80 loc) · 2.15 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
88
89
##
## How to use:
##
## Install Python (brew or similar..)
## Install mkdocs (binary_path/pip install mkdocs)
## https://www.mkdocs.org/getting-started/#installation
## Install Material for MkDocs
## https://squidfunk.github.io/mkdocs-material/getting-started/
## terminal run: cd current directory
## terminal run: mkdocs build -v
##
##
site_name: Dédalo Documentation
# site_dir: use a git ignored directory, symlink of local Dédalo website doc folder
site_dir: docs_site
theme:
name: material
custom_dir: docs/assets/overrides
logo: assets/images/dedalo_logo_white.svg
favicon: assets/favicon.ico
font: false
features:
- navigation.tracking
- navigation.path
- navigation.top
- navigation.footer
- navigation.instant
- content.code.copy
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: orange
toggle:
icon: material/brightness-4
name: Switch to light mode
markdown_extensions:
- attr_list
- md_in_html
- admonition
- pymdownx.details
- footnotes
- markdown.extensions.codehilite:
guess_lang: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.inlinehilite
- pymdownx.highlight:
extend_pygments_lang:
- name: php
lang: php
options:
startinline: true
- name: shell
lang: shell
options:
startinline: true
extra:
generator: false
# force to pack external libs like mermaid into a local js files (directory /assets/external)
plugins:
- search
- privacy:
#- glightbox
# repo_url: https://github.com/renderpci/dedalo
copyright: DÉDALO. MANAGING CULTURAL HERITAGE ARCHIVES - <a href="https://dedalo.dev">dedalo.dev</a>
extra_css:
- additional_docs.css
extra_javascript:
- additional_javascript.js