-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
99 lines (95 loc) · 2.79 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
site_name: Documentation for inseri core
site_url: https://docs.inseri.swiss/
repo_url: https://github.com/inseri-swiss/inseri-core-wp
nav:
- 'Home': 'index.md'
- 'getting_started.md'
- 'Tutorials':
- 'tutorials/hello_world.md'
- 'tutorials/data_mapping_with_python.md'
- 'Blocks':
- 'blocks/overview.md'
- 'blocks/cytoscape.md'
- 'blocks/dataTable.md'
- 'blocks/download.md'
- 'blocks/dropdown.md'
- 'blocks/export.md'
- 'blocks/html.md'
- 'blocks/iiifViewer.md'
- 'blocks/image.md'
- 'blocks/javascript.md'
- 'blocks/localFileImport.md'
- 'blocks/mediaCollection.md'
- 'blocks/plotly.md'
- 'blocks/python.md'
- 'blocks/rCode.md'
- 'blocks/share.md'
- 'blocks/slider.md'
- 'blocks/textEditor.md'
- 'blocks/textViewer.md'
- 'blocks/webApi.md'
- 'blocks/zenodo.md'
- 'Features':
- 'features/open_citable.md'
- 'features/share_state.md'
- 'features/publicly_editable.md'
- 'features/block_duplication.md'
- 'features/sidebar.md'
- 'features/hide_invisible_blocks.md'
- 'features/data_flow.md'
- 'How to':
- 'how-to/playground.md'
- 'how-to/visualizations.md'
- 'how-to/work_with_files.md'
- 'how-to/python_packages.md'
- 'how-to/r_packages.md'
- 'how-to/deposit_content.md'
- 'inseri.swiss ↗': https://inseri.swiss/
theme:
name: material
features:
- content.code.copy
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- toc.integrate
palette:
primary: black
accent: yellow
logo: assets/inseri_logo.svg
favicon: assets/inseri_logo.svg
icon:
repo: fontawesome/brands/github
extra:
social:
- icon: material/home
link: https://docs.inseri.swiss/
- icon: material/arrow-top-right
link: https://inseri.swiss/
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences
- md_in_html
- attr_list
- admonition
- pymdownx.details
- pymdownx.superfences
- toc:
permalink: true
plugins:
- glightbox
- search
- privacy
- redirects:
redirect_maps:
'how-to/packages.md': 'how-to/python_packages.md'
'how-to/workWithFiles.md': 'how-to/work_with_files.md'
'features/dataflow.md': 'features/data_flow.md'
'features/dataFlow.md': 'features/data_flow.md'
'features/DataFlow.md': 'features/data_flow.md'
'features/hideInvisibleBlocks.md': 'features/hide_invisible_blocks.md'
'features/blockDuplication.md': 'features/block_duplication.md'
'tutorials/data-mapping-with-python.md': 'tutorials/data_mapping_with_python.md'
'tutorials/hello-world.md': 'tutorials/hello_world.md'
'getting-started.md': 'getting_started.md'