-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
55 lines (50 loc) · 2.42 KB
/
Copy pathmkdocs.yml
File metadata and controls
55 lines (50 loc) · 2.42 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
site_name: "AIRR-ML-25: Adaptive Immune Profiling Challenge"
theme:
name: material
toc: false # This line disables the right-side table of contents
features:
- navigation.tabs # Enables top-level menu items as tabs
- navigation.sections # Displays sections (headings) of the current page in the left sidebar as a table of contents
- search.highlight # Highlights search results
- search.suggest # Suggests search terms
- content.code.copy # Adds a copy button to code blocks (useful if you include code snippets)
- content.tabs # Allows for tabbed content within markdown files
- toc.integrate # Integrates the table of contents into the sidebar
palette:
- scheme: default # Default light theme
toggle:
icon: material/brightness-4 # Icon for switching to dark mode
name: Switch to dark mode
- scheme: slate # Dark theme
toggle:
icon: material/brightness-7 # Icon for switching to light mode
name: Switch to light mode
font:
text: Inter # Modern, readable font for body text
code: Fira Code # Monospaced font for code blocks
icon:
logo: material/trophy-award # A suitable icon for your site's logo in the header
nav:
- "": index.md # Now combines Overview and Timeline
# - Prizes: prizes.md # Now combines Monetary Rewards and Scientific manuscript authorship
# - Further details: further_details.md # Now combines Description, Evaluation, Additional resources, Acknowledgements, Citation
markdown_extensions:
- pymdownx.highlight: # For syntax highlighting of code blocks
anchor_linenums: true
linenums: true
noclasses: true
- pymdownx.inlinehilite # For inline code highlighting
- pymdownx.snippets # For including content from other files (useful for consolidating)
- admonition # For creating callout blocks (e.g., Note, Warning, Tip)
- pymdownx.details # For collapsible details blocks
- pymdownx.superfences # Enhanced code blocks
- attr_list # Allows adding HTML attributes to markdown elements
- md_in_html # Allows using markdown syntax within raw HTML blocks
- toc: # Table of Contents extension (this is for the markdown parser, not the theme's sidebar)
permalink: true # Adds a permalink icon next to headings
toc_depth: 3 # Includes headings up to level 3 in the table of contents
# Removed extra_css as it's no longer needed for this purpose
extra_javascript:
- js/timer.js
extra_css:
- css/timer.css