-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
90 lines (82 loc) · 2.2 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# Project information
site_name: Nezzle
#site_url:
site_description: Network Visualization through both Programming and GUI.
site_author: Daewon Lee
# Repository
repo_url: https://github.com/dwgoon/nezzle
repo_name: dwgoon/nezzle
#edit_uri: "" #disables edit button
# Theme
theme:
name: material
logo: images/assets/favicon.png
favicon: images/assets/favicon.png
palette:
primary: black
accent: pink
# Plugins
plugins:
- search
- autorefs
- mkdocstrings:
default_handler: python
handlers:
python:
selection:
docstring_style: "google"
inherited_members: false
rendering:
#show_signature_annotations: true
#show_root_full_path: true
#show_root_heading: true
show_source: true
#show_category_heading: true
setup_commands:
- import sys
- sys.path.append("docs")
selection:
new_path_syntax: yes
watch:
- nezzle/
markdown_extensions:
- admonition
- markdown_katex
#- markdown_katex:
# no_inline_svg: True
# insert_fonts_css: True
# macro-file: macros.tex
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.extra
- toc:
toc_depth: "1-1"
# Page tree
nav:
- Home: "index.md"
- Installation: "install.md"
- Tutorial:
- Data: network_data.md
- Codes:
- Creating Networks: create_networks.md
- Modifying Graphics: modify_graphics.md
- Console: console.md
- Graphics:
- Aligning Items: align_items.md
- Gallery: gallery.md
- API:
- graphics:
- nodes: nezzle/grpahics/nodes/nodes.md
- edges:
- BaseEdge: nezzle/graphics/edges/baseedge.md
- TwoNodeEdge: nezzle/graphics/edges/twonodeedge.md
- StraightEdge: nezzle/graphics/edges/straightedge.md
# - CLI: nezzle/main.md
# - Configuration: nezzle/config.md
# - Data: nezzle/data.md
# - Models: nezzle/models.md
# - Training: nezzle/train.md
# - Inference: nezzle/predict.md
# - Utilities: nezzle/utils.md