-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yaml
144 lines (133 loc) · 3.49 KB
/
mkdocs.yaml
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
# General
site_name: Data Package Library
site_url: https://frictionlessdata.github.io/dplib-py
site_author: Open Knowledge Foundation
site_description: Python implementation of the Data Package standard
repo_name: frictionlessdata/dplib-py
repo_url: https://github.com/frictionlessdata/dplib-py
edit_uri: edit/main/docs/
copyright: Copyright © 2023 <a href="https://okfn.org">Open Knowledge Foundation</a>
# Theme
theme:
name: material
custom_dir: docs/.theme
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
# - content.tabs.link
- content.tooltips
# - header.autohide
# - navigation.expand
- navigation.footer
# - navigation.indexes
# - navigation.instant
# - navigation.prune
- navigation.sections
- navigation.tabs
# - navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
# - toc.integrate
palette:
- scheme: default
primary: blue
accent: blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: black
accent: black
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
logo: assets/logo-dark.svg
favicon: assets/favicon.ico
# Plugins
plugins:
- mkdocstrings:
handlers:
python:
options:
allow_inspection: true
show_root_heading: true
show_if_no_docstring: true
heading_level: 3
# Extras
extra:
annotate:
json: [.s2]
analytics:
provider: google
property: !ENV GOOGLE_ANALYTICS_KEY
social:
- icon: fontawesome/brands/github
link: https://github.com/frictionlessdata
name: Code on Github
- icon: fontawesome/brands/twitter
link: https://twitter.com/okfn
name: Follow us on Twitter
# Extensions
markdown_extensions:
- tables
- toc:
permalink: true
title: Page contents
# toc_depth: 4
- admonition
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.extra
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true
- pymdownx.snippets:
check_paths: true
# Navigation
nav:
- Home:
- Welcome: index.md
- Installation: installation.md
- Working with Models: working-with-models.md
- Validating Metadata: validating-metadata.md
- Converting Metadata: converting-metadata.md
- Contributing: contributing.md
- Changelog: changelog.md
- Models:
- Package: models/package.md
- Resource: models/resource.md
- Dialect: models/dialect.md
- Schema: models/schema.md
- Actions:
- Package: actions/package.md
- Resource: actions/resource.md
- Dialect: actions/dialect.md
- Schema: actions/schema.md
- Plugins:
- CKAN: plugins/ckan.md
- CLI: plugins/cli.md
- DataCite: plugins/datacite.md
- DCAT: plugins/dcat.md
- GitHub: plugins/github.md
- Pandas: plugins/pandas.md
- Polars: plugins/polars.md
- SQL: plugins/sql.md
- Zenodo: plugins/zenodo.md