forked from ElArkk/jax-unirep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
72 lines (64 loc) · 1.8 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
site_name: "jax-unirep: A performant reimplementation of UniRep in JAX"
theme:
name: 'material'
palette:
primary: 'teal'
accent: 'teal'
icon:
logo: 'biotech'
features:
- tabs
nav:
- Home: index.md
- Getting Started: getting-started.md
- Improvements: improvements.md
- Advanced Usage:
- General: advanced.md
- Example workflow using fit: fitting.ipynb
- Contributing: contributing.md
- Development: development.md
- API Docs: api.md
plugins:
- search:
separator: '[\s\-\.]+'
lang:
- en
- mknotebooks:
execute: true
timeout: 300
# Taken from here: https://squidfunk.github.io/mkdocs-material/extensions/codehilite/
markdown_extensions:
- codehilite
- pymdownx.arithmatex
- pymdownx.details
- pymdownx.superfences
# - pymdownx.superfences:
# custom_fences:
# - name: mermaid
# class: mermaid
# format: !!python/name:pymdownx.superfences.fence_div_format
- markdown.extensions.footnotes
- mkautodoc
- admonition
extra_css:
- https://unpkg.com/[email protected]/dist/mermaid.css
- css/custom.css
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML
- https://unpkg.com/[email protected]/dist/mermaid.min.js
google_analytics:
- 'UA-12498603-3'
- 'auto'
repo_name: 'ElArkk/jax-unirep'
repo_url: 'https://github.com/ElArkk/jax-unirep'
# Arkadij, customise these if you'd like to :)
# extra:
# social:
# - icon: 'material/email'
# link: 'http://www.shortwhale.com/ericmjl'
# - icon: 'fontawesome/brands/github'
# link: 'https://github.com/ElArkk'
# - icon: 'fontawesome/brands/twitter'
# link: 'https://twitter.com/ElArkk'
# - icon: 'fontawesome/brands/linkedin'
# link: 'https://linkedin.com/in/ericmjl'