-
Notifications
You must be signed in to change notification settings - Fork 75
/
mkdocs.yml
113 lines (106 loc) · 2.66 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
site_name: Photoshop Python API
repo_url: https://github.com/loonghao/photoshop-python-api
repo_name: github
site_author: longhao
remote_branch: master
copyright: "Copyright (c) 2019 Long Hao"
features:
- content.code.annotate
- navigation.indexes
- navigation.sections
- navigation.tabs
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
docs_dir: docs
palette:
scheme: dracula
primary: deep purple # Primary colors
accent: deep purple # accent color
nav:
- Home:
- Overview: index.md
- Changelog: changelog.md
- Examples: examples.md
# defer to gen-files + literate-nav
- Code Reference: reference/
- 'Issue Tracker': 'https://github.com/loonghao/photoshop-python-api/issues'
markdown_extensions:
- pymdownx.extra
- admonition
- def_list
- footnotes
- meta
- toc
- pymdownx.arithmatex
- pymdownx.betterem
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.snippets
- pymdownx.highlight
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- attr_list
- md_in_html
theme:
name: material
plugins:
- include-markdown
- search
- same-dir
- autorefs
- autolinks
- gen-files:
scripts:
- docs/gen_api_nav.py
- docs/gen_examples.py
- literate-nav:
nav_file: SUMMARY.md
- git-revision-date-localized:
type: timeago
fallback_to_build_date: true
enable_creation_date: true
enabled: true
- mkdocstrings:
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
rendering:
show_root_heading: true
show_source: false
docstring_section_style: list
members_order: alphabetical
show_category_heading: no
merge_init_into_class: yes
how_submodules: no
selection:
docstring_style: google
docstring_options:
ignore_init_summary: yes
- minify:
minify_html: true
minify_js: true
minify_css: true
htmlmin_opts:
remove_comments: true
- mkdocs_pymdownx_material_extras