-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmkdocs.yml
74 lines (70 loc) · 2.44 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
site_name: pydapper
nav:
- Overview: index.md
- Database Support:
- Intro - Database Support: database_support/intro.md
- Google BigQuery: database_support/bigquery.md
- Microsoft SQL Server: database_support/mssql.md
- MySQL: database_support/mysql.md
- Oracle: database_support/oracle.md
- PostgreSQL: database_support/postgresql.md
- SQLite: database_support/sqlite.md
- Methods:
- execute: methods/execute.md
- execute_scalar: methods/execute_scalar.md
- query: methods/query.md
- query_first: methods/query_first.md
- query_first_or_default: methods/query_first_or_default.md
- query_single: methods/query_single.md
- query_single_or_default: methods/query_single_or_default.md
- query_multiple: methods/query_multiple.md
- Async Methods:
- execute_async: async_methods/execute_async.md
- execute_scalar_async: async_methods/execute_scalar_async.md
- query_async: async_methods/query_async.md
- query_first_async: async_methods/query_first_async.md
- query_first_or_default_async: async_methods/query_first_or_default_async.md
- query_single_async: async_methods/query_single_async.md
- query_single_or_default_async: async_methods/query_single_or_default_async.md
- query_multiple_async: async_methods/query_multiple_async.md
- Release Notes: release_notes.md
theme:
name: 'material'
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue
accent: blue
toggle:
icon: material/lightbulb-outline
name: "Switch to dark mode"
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue
accent: blue
toggle:
icon: material/lightbulb
name: "Switch to light mode"
repo_name: zschumacher/pydapper
repo_url: https://github.com/zschumacher/pydapper
# disable edit links
edit_uri: ''
markdown_extensions:
- markdown_include.include
- pymdownx.highlight
- pymdownx.inlinehilite
- admonition
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format ''
- pymdownx.extra
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- toc:
permalink: 🔗