-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmkdocs.yml
59 lines (53 loc) · 1.51 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
site_name: PyOrthanc
site_description: PyOrthanc library
repo_url: https://github.com/gacou54/pyorthanc
repo_name: gacou54/pyorthanc
theme:
name: material
features:
- navigation.sections
- content.code.copy
- content.code.select
nav:
- 'Introduction': 'index.md' # README
- 'Usage':
- 'Quick Start': 'tutorial/quickstart.md'
- 'Examples': 'tutorial/examples.md'
- 'Api Reference':
'Orthanc': 'api/client.md'
'Asynchronous Orthanc': 'api/async_client.md'
'Orthanc SDK': 'api/orthanc_sdk.md'
'Patient': 'api/resources/patient.md'
'Study': 'api/resources/study.md'
'Series': 'api/resources/series.md'
'Instance': 'api/resources/instance.md'
'Find': 'api/find.md'
'Filtering': 'api/filtering.md'
'Modality': 'api/modality.md'
'Jobs': 'api/jobs.md'
'Util': 'api/util.md'
'Resource': 'api/resources/resource.md'
'Retrieve': 'api/retrieve.md'
- 'Releases': 'releases.md'
- 'More information':
- 'Issues and contributing': 'contributing.md'
- 'Contacts': 'contacts.md'
- 'Citation': 'citation.md'
markdown_extensions:
- admonition
- codehilite:
css_class: highlight
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
show_root_heading: true
docstring_style: numpy
default_handler: python
# - toc-md:
# header_level:
# pickup_description_class: false
# ignore_page_pattern: api/*
# remove_navigation_page_pattern: api/*