-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
56 lines (51 loc) · 1.97 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
site_name: K3Node
# steal from Patrick Kidger
theme:
name: "material"
logo: images/logo.svg
features:
- navigation.sections # Sections are included in the navigation on the left.
- toc.integrate # Table of contents is integrated on the left; does not appear separately on the right.
- header.autohide # header disappears as you scroll
palette:
# Light mode / dark mode
# We deliberately don't automatically use `media` to check a user's preferences. We default to light mode as
# (a) it looks more professional, and (b) is more obvious about the fact that it offers a (dark mode) toggle.
- scheme: default
primary: white
accent: amber
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: black
accent: amber
toggle:
icon: material/weather-sunny
name: Switch to light mode
font:
text: Montserrat
code: Ubuntu Mono
plugins:
- mkdocstrings
- search # default search plugin; needs manually re-enabling when using any other plugins
- autorefs # Cross-links to headings
- mknotebooks # Jupyter notebooks
- mkdocs-jupyter
docs_dir: _docs
site_dir: docs
repo_url: https://github.com/anas-rz/k3-node
repo_name: anas-rz/k3-node
edit_uri: "" # No edit button, as some of our pages are in /docs and some in /examples via symlink, so it's impossible for them all to be accurate
nav:
- k3_node.layers: layers.md
- Aggregation Layers: aggr_layers.md
- Convolution Layers: conv_layers.md
- Normalization Layers: norm_layers.md
# - Example TensorFlow: examples/tensorflow/ogb_arxiv_spektral_dataset.ipynb
# - Example PyTorch: examples/torch/planetoid_PyTorch_Geometric.ipynb
markdown_extensions:
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg