-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathmkdocs.yml
84 lines (78 loc) · 2.1 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
# Project information
site_name: Pynimate
site_url: https://julkaar9.github.io/
site_author: julkar9
site_description: >-
Pynimate is a python package for statistical data analysis
# Repository
repo_name: julkaar9/pynimate
repo_url: https://github.com/julkaar9/pynimate
# Copyright
copyright: Copyright © 2023 Md Julkarnaeen
theme:
name: material
logo: assets/pynimate_logo.png
favicon: assets/favicon.png
features:
- content.code.annotate
- content.tooltips
- navigation.indexes
- navigation.sections
- navigation.tabs
- navigation.top
- navigation.tracking
- toc.follow
palette:
- scheme: default
primary: white
accent: teal
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: black
accent: teal
toggle:
icon: material/weather-sunny
name: Switch to light mode
icon:
repo: fontawesome/brands/github
nav:
- Home:
- Home: index.md
- Getting started: guide/starter.md
- User Guide:
- BarChart Dark Mode: guide/dark_mode.md
- Lineplot Dark Mode: guide/lineplot_darkmode.md
- Api Reference:
- Animators:
- Canvas: reference/canvas.md
- Baseplot: reference/baseplot.md
- Barhplot: reference/barhplot.md
- Lineplot: reference/lineplot.md
- Barplot: reference/barplot.md
- Data Modifiers:
- BaseDatafier: reference/datafiers/base_datafier.md
- BarDatafier: reference/datafiers/bar_datafier.md
- LineDatafier: reference/datafiers/line_datafier.md
- Datafier: reference/datafiers/datafier.md
- Utils: reference/utils.md
# Customization
extra:
# analytics:
# provider: google
# property: !ENV GOOGLE_ANALYTICS_KEY
social:
- icon: fontawesome/brands/github
link: https://github.com/julkaar9/pynimate
- icon: fontawesome/brands/python
link: https://pypi.org/project/pynimate/
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
plugins:
- mkdocstrings
- search