-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmkdocs.yml
More file actions
53 lines (49 loc) · 1.11 KB
/
mkdocs.yml
File metadata and controls
53 lines (49 loc) · 1.11 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
site_name: GenLM Bytes
theme:
name: material
font:
text: Cabinet Grotesk # Default font for text
code: JetBrains Mono
palette:
# Palette toggle for light mode
- scheme: default
accent: blue
primary: white
plugins:
- search
- gen-files:
scripts:
- docs/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- mkdocstrings:
handlers:
python:
options:
members_order: source
members_order_submodules: source
group_by_category: false
show_protocols: true
- section-index
- mkdocs-jupyter:
execute: false
allow_errors: false
highlight_extra_classes: "custom-css-classes"
include_source: true
nav:
- Home: index.md
- API Reference: reference/
- Basic Usage: usage.ipynb
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
- pymdownx.arithmatex:
generic: true
- footnotes
- md_in_html
repo_url: https://github.com/genlm/genlm-bytes