-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
144 lines (133 loc) · 4.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
---
site_name: Ocean Data Parser
site_url: https://cioos-siooc.github.io/ocean-data-parser/
repo_name: ocean-data-parser
repo_url: https://github.com/cioos-siooc/ocean-data-parser
theme:
name: material
logo: images/logo.svg
favicon: images/logo.svg
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
primary: custom
accent: custom
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
primary: custom
accent: custom
custom_dir: docs/theme_override_home/
features:
- header.autohide
- navigation.footer
- navigation.top
- navigation.tracking
- navigation.indexes
- toc.integrate
- toc.follow
- navigation.tabs
- navigation.tabs.sticky
- content.code.copy
- content.code.select
- content.tabs.link
plugins:
- mkdocstrings
- mkdocs-jupyter:
ignore_h1_titles: true
- mike:
# These fields are all optional; the defaults are as below...
canonical_version: main
- mkdocs-simple-hooks:
hooks:
on_pre_build: "docs.scripts.hooks:on_pre_build"
- search
- material-plausible
markdown_extensions:
- mkdocs-click
- admonition
- attr_list
- def_list
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true
- toc:
permalink: true
nav:
- Home: index.md
- User Guide:
- User Guide: user_guide/index.md
- Command Line Interface (odpy): user_guide/cli.md
- ocean_data_parser.read.file: user_guide/read.md
- ocean_data_parser.parsers:
- user_guide/parsers/index.md
- amundsen: user_guide/parsers/amundsen.md
- dfo:
- dfo.ios: user_guide/parsers/dfo/ios.md
- dfo.nafc: user_guide/parsers/dfo/nafc.md
- dfo.odf: user_guide/parsers/dfo/odf.md
- electricblue: user_guide/parsers/electricblue.md
- nmea: user_guide/parsers/nmea.md
- netcdf: user_guide/parsers/netcdf.md
- onset: user_guide/parsers/onset.md
- pme: user_guide/parsers/pme.md
- rbr: user_guide/parsers/rbr.md
- seabird: user_guide/parsers/seabird.md
- star_oddi: user_guide/parsers/star-oddi.md
- sunburst: user_guide/parsers/sunburst.md
- van_essen_instruments: user_guide/parsers/van-essen-instruments.md
- vocabularies:
- amundsen: user_guide/vocabularies/amundsen-int.md
- dfo.odf: user_guide/vocabularies/dfo-odf.md
- dfo.ios.shell: user_guide/vocabularies/dfo-ios-shell.md
- dfo.nafc.pfile: user_guide/vocabularies/dfo-nafc-p-files.md
- seabird: user_guide/vocabularies/seabird.md
# - Metadata: # TODO
# - CF: metadata/cf.md
# - NERC: metadata/nerc.md
# - Polar Data Catalog: metadata/pdc.md
- Example Notebooks:
- Amundsen INT example: notebooks/amundsen_int_parser_example.ipynb
- DFO BIO ODF example: notebooks/dfo_bio_odf_parser_example.ipynb
- DFO BIO NAFC Pfiles example: notebooks/dfo_nafc_p_file_parser_example.ipynb
- NMEA example: notebooks/nmea_parser_example.ipynb
- Seabird CNV and BTL files example: notebooks/seabird_cnv_and_btl_parser_example.ipynb
- Development: development.md
- Release notes: release-notes.md
extra:
version:
provider: mike
social:
- icon: fontawesome/brands/github
link: https://github.com/cioos-siooc
generator: false
analytics:
provider: plausible
domain: cioos-siooc.github.io/ocean-data-parser
src: "https://plausible.server.hakai.app/js/script.js"
extra_css:
- stylesheets/extra.css
extra_javascript:
- https://unpkg.com/[email protected]/dist/tablesort.min.js
- javascripts/tablesort.js