-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
122 lines (118 loc) · 3 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
114
115
116
117
118
119
120
121
122
site_name: template
site_author: YourName
site_description: >-
This is the template package!
nav:
- Home: index.md
- Overview:
- example_docs/intro/why.md
- example_docs/intro/resources.md
- Setup:
- example_docs/setup/prep.md
- example_docs/setup/name.md
- example_docs/setup/basics.md
- Installation:
- example_docs/installation/pyproject.md
- example_docs/installation/install.md
- Code:
- example_docs/code/source.md
- example_docs/code/hints.md
- example_docs/code/tests.md
- Documentation:
- example_docs/mkdocs/docs.md
- example_docs/mkdocs/build.md
- GitHub and CI:
- example_docs/github/commits.md
- example_docs/github/workflows.md
- Code Documentation: reference/ # keep me!
- About:
- example_docs/about/changelog.md
- example_docs/about/conduct.md
- example_docs/about/license.md
repo_url: https://github.com/Quantum-Accelerators/template/
edit_uri: blob/main/docs/
theme:
features:
- content.action.edit
- content.code.copy
- content.code.select
- content.code.annotate
- content.tabs.link
- content.tooltips
- navigation.footer
- navigation.path
- navigation.tracking
- navigation.sections
- navigation.top
- search.highlight
- search.suggest
- search.share
- header.autohide
- toc.follow
name: material
palette:
primary: orange
scheme: slate
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.snippets
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format ""
name: mermaid
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
plugins:
- search:
separator: '[\s\-,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
- autorefs
- social
- offline
- mkdocstrings:
default_handler: python
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
- https://numpy.org/doc/stable/objects.inv
options:
docstring_style: numpy
docstring_section_style: list
separate_signature: true
merge_init_into_class: true
docstring_options:
ignore_init_summary: true
show_signature_annotations: true
signature_crossrefs: true
show_if_no_docstring: true
- gen-files:
scripts:
- docs/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md