-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yaml
112 lines (101 loc) · 3.05 KB
/
mkdocs.yaml
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# ------------------------ Navigation Menu ----------------------------------- #
nav:
- Home: /
- Documentation:
- Governance: mainDocumentation/governanceModel.md
- Operation: mainDocumentation/expectedOperations.md
- Disaster Recovery: mainDocumentation/disasterRecovery.md
- Installation and Administration:
- Beacon Aggregator: adminGuide/beacon-aggregator.md
- Light a Network: adminGuide/light-beacon-network.md
- Add a Beacon: adminGuide/add-beacon.md
- Beacon Registry: adminGuide/beacon-registry.md
- Best Practices: adminGuide/best-practices.md
# ------------------------- Repository Settings ------------------------------ #
site_name: ELIXIR Beacon Network
site_description: 'Website for the ELIXIR Beacon v2 Network Project'
site_author: 'Sergi Aguiló Castillo, Michael Baudis & Beacon Network Developers'
copyright: '© Copyright 2024, ELIXIR Beacon Developers'
repo_name: 'beacon-network'
repo_url: https://github.com/elixir-europe/beacon-network
edit_uri: edit/main/docs/
repo_icon: " [:fontawesome-brands-github:](https://github.com/ga4gh-beacon/beacon-network/tree/main/docs)"
# ------------------- Mkdocs Configuration and Extensions -------------------- #
extra_css: [css/theme_overrides.css]
plugins:
- search
- macros
- mermaid2
markdown_extensions:
- toc:
toc_depth: 2-3
permalink: true
- admonition
- attr_list
- footnotes
- md_in_html
- pymdownx.critic
- pymdownx.caret
- pymdownx.details
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- pymdownx.saneheaders
- pymdownx.superfences
- pymdownx.magiclink:
hide_protocol: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- tables
- mdx_gh_links:
user: ga4gh-beacon
repo: beacon-v2
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
options:
custom_icons:
- extras/.icons
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:mermaid2.fence_mermaid
theme:
custom_dir: extras
name: material
palette:
primary: indigo
logo: img/elixir-white-48x36.svg
favicon: img/elixir-white-48x36.svg
icon:
repo: fontawesome/brands/github-alt
admonition:
warning: lock
security: lock
features:
- content.tabs.link
- search.highlight
- search.share
- navigation.expand
- toc.integrate
# Options
extra:
excerpt_separator: <!--more-->
blog_list_length: 100
news:
dir: news
minutes:
dir: minutes
publications:
dir: publications
contacts:
dir: people
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/genomebeacons
- icon: fontawesome/brands/github
link: https://github.com/ga4gh-beacon
# https://pypi.org/project/mkdocs-with-pdf/ for more PDF configuration ...