-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
96 lines (85 loc) · 2.02 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
91
92
93
94
95
96
site_name: Artificial Artwork
site_url: https://neural-style-transfer.readthedocs.io/
site_description: Neural Style Transfer Project Documentation.
site_author: Konstantinos Lampridis
repo_url: https://github.com/boromir674/neural-style-transfer/
repo_name: boromir674/neural-style-transfer
edit_uri: blob/master/docs/
theme:
# 1
name: material
icon:
logo: material/palette
previous: fontawesome/solid/angle-left
next: fontawesome/solid/angle-right
default: material/tag
# favicon: images/favicon.png
features:
- navigation.path
- navigation.top
- navigation.footer
# - navigation.indexes
# navigation.instant break mermaid
# features:
# - navigation.tracking
# - navigation.instant
# 2
# name: mkdocs
# # nav_style: dark
# locale: en
# highlightjs: true
# hljs_languages:
# - python
# - bash
# - yaml
# - json
# shortcuts:
# help: 191 # ?
# next: 78 # n
# previous: 80 # p
# search: 83 # s
# 3
# name: readthedocs
plugins:
# Enable jinja inside your markdown files
# https://github.com/fralau/mkdocs_macros_plugin
- macros
# Authors need installation
# - git-authors
- tags:
tags_file: tags.md
# BASIC SEARCH PLUGIN
- search
# MERMAID Render Support
- mermaid2
# Directives Provider for docstrings parsing
- mkdocstrings
# - mkdocstrings:
# handlers:
# python:
# options:
# docstring_section_style: list
# # members_order: source
# show_root_heading: false
# show_source: true
# show_signature_annotations: true
- gen-files:
scripts:
- scripts/gen_api_refs_pages.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
markdown_extensions:
- mkdocs-click
- pymdownx.highlight
nav:
- Home:
- "Quick Start": index.md
- "CLI": cli.md
- Developer:
- "Docker": build-process_DAG.md
- "CICD": cicd.md
- Code Reference: reference/
- tags: tags.md
extra:
generator: false