-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
90 lines (81 loc) · 2.28 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
site_name: SQLiter
# default to using the material theme
theme:
name: material
palette:
primary: light-blue
accent: blue
features:
- navigation.footer
- navigation.expand
- navigation.tabs
- navigation.sections
- navigation.indexes
- content.code.copy
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/seapagan/simple-toml-settings
- icon: fontawesome/brands/twitter
link: https://twitter.com/gnramsay_dev
consent:
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
copyright: © 2024-2025 Grant Ramsay (Seapagan)
repo_name: SQLiter
repo_url: https://github.com/seapagan/sqliter-py
hooks:
- docs/hooks/google_style_notes.py
plugins:
- search
- privacy
- minify:
minify_html: true
minify_css: true
minify_js: true
htmlmin_opts:
remove_comments: true
remove_empty_space: true
markdown_extensions:
- mdx_truly_sane_lists
- admonition
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.highlight:
linenums: false
auto_title: false
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
extra_css:
- css/extra.css
nav:
- Home:
- Introduction: index.md
- Installation: installation.md
- Quick Start: quickstart.md
- Guide:
- Overview: guide/guide.md
- Models: guide/models.md
- Connect to a Database: guide/connecting.md
- Properties: guide/properties.md
- Table Operations: guide/tables.md
- Data Operations: guide/data-operations.md
- Transactions: guide/transactions.md
- Filtering Results: guide/filtering.md
- Ordering: guide/ordering.md
- Field Control: guide/fields.md
- Exceptions: guide/exceptions.md
- Debug Logging: guide/debug.md
- Changelog:
- changelog/index.md
- Contributing:
- contributing/index.md
- TODO List:
- todo/index.md
- License: license.md