-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
65 lines (60 loc) · 1.55 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
site_name: kfx
repo_url: https://github.com/e2fyi/kfx
strict: false
nav:
- Quickstart: index.md
- Guide:
- Kubeflow Pipeline DSL: kfx-dsl.md
- Kubeflow Pipeline Metrics and Metadata UI: kfx-vis.md
- Changelog: changelog.md
theme:
name: material
icon:
logo: fontawesome/brands/python
repo: fontawesome/brands/github
features:
- navigation.instant
- navigation.expand
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/eterna2
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/william-teo-56021b16
markdown_extensions:
- admonition
- markdown_include.include
- pymdownx.emoji
- pymdownx.magiclink
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.tasklist
- toc:
permalink: true
# slugify: !!python/name:pymdownx.slugs.uslugify
google_analytics:
- UA-180553388-1
- auto
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_source: false
show_if_no_docstring: true
show_root_heading: true
show_category_heading: true
setup_commands:
- import sys
- sys.path.append("docs")
selection:
new_path_syntax: yes
filters:
- "!^_" # exlude all members starting with _
- "^__init__$" # but always include __init__ modules and methods
watch:
- kfx/
- git-revision-date-localized:
fallback_to_build_date: true