forked from narwhals-dev/narwhals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
45 lines (45 loc) · 1.09 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
site_name: Narwhals
repo_url: https://github.com/MarcoGorelli/narwhals.git
nav:
- Home: index.md
- Why: why.md
- Installation: installation.md
- Quick start: quick_start.md
- Tutorial:
- basics/dataframe.md
- basics/column.md
- basics/complete_example.md
- Extending: extending.md
- Related projects: related.md
- API Reference:
- api-reference/narwhals.md
- api-reference/dataframe.md
- api-reference/lazyframe.md
- api-reference/series.md
- api-reference/expressions.md
theme:
name: material
font: false
features:
- content.code.copy
- content.code.annotate
- navigation.footer
plugins:
- search
- mkdocstrings:
handlers:
python:
import:
- https://installer.readthedocs.io/en/stable/objects.inv
rendering:
show_signature_annotations: true
markdown_extensions:
- md_in_html
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences:
custom_fences:
- name: python
class: python
validator: !!python/name:markdown_exec.validator
format: !!python/name:markdown_exec.formatter