-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
75 lines (70 loc) · 1.81 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
site_name: Research Software Engineering Team Blog
site_description: The Research Software Engineering Team Blog
site_url: https://imperialcollegelondon.github.io/RSEBlog/
repo_url: https://github.com/ImperialCollegeLondon/RSEBlog
theme:
name: material
custom_dir: docs/overrides
logo: assets/imperial_bw.svg
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
features:
- content.code.copy
- content.code.select
- content.code.annotate
extra_css:
- stylesheets/extra.css
extra_javascript:
- https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML
- https://cdn.usefathom.com/script.js
plugins:
- search
- tags:
tags_file: tags.md
- blog:
blog_dir: .
categories: true
categories_allowed:
- Events
- Technology
categories_toc: true
- rss:
match_path: posts/.*
date_from_meta:
as_creation: date
categories:
- categories
- tags
- caption:
figure:
ignore_classes: ['no-caption']
markdown_extensions:
- admonition
- mdx_math:
enable_dollar_delimiter: True
- pymdownx.tilde
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- attr_list