-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
49 lines (48 loc) · 1.27 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
site_name: dict2graph Docs
site_dir: public
docs_dir: dict2graph_docs
repo_url: https://git.connect.dzd-ev.de/dzdpythonmodules/dict2graph
nav:
- Start: "index.md"
- Basics:
- "Introduction": "basics.md"
- "Examples": "examples.md"
- Transformers:
- "Transforming": "use_transformers.md"
- "Generic Transformers": "list_generic_transformer.md"
- "Node Transformers": "list_node_transformer.md"
- "Relationship Transformers": "list_rel_transformer.md"
- "Bring your own Transformer": "diy_transformer.md"
- "API/Model":
- "Dict2Graph": "api/api_dict2graph.md"
- "Transformer": "api/api_transformer.md"
- "Node": "api/api_node.md"
- "Relation": "api/api_relation.md"
- Extras:
- "Hubbing": "hubbing.md"
theme:
name: material
palette:
scheme: slate
primary: blue grey
features:
- navigation.tracking
- navigation.tabs
- navigation.expand
- toc.follow
extra_css:
- extra_style.css
plugins:
- autorefs
- mkdocstrings
- search
markdown_extensions:
# https://squidfunk.github.io/mkdocs-material/reference/code-blocks/
- pymdownx.highlight:
anchor_linenums: true
- toc:
permalink: true
- admonition
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences