-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmkdocs.yml
More file actions
69 lines (65 loc) · 2.02 KB
/
mkdocs.yml
File metadata and controls
69 lines (65 loc) · 2.02 KB
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
# Project information
site_name: duckQL
site_description: 'Python bindings for duckQL'
site_author: 'Jakub Dubec'
site_url: 'https://sibyx.github.io/duckql-python/'
# Navigation
nav:
- Home: index.md
- Properties:
- 'Property': properties/property.md
- 'Constant': properties/constant.md
- 'Array': properties/array.md
- 'Boolean': properties/boolean.md
- 'Null': properties/null.md
- Structures:
- 'Between': structures/between.md
- 'Comparision': structures/comparision.md
- 'Distinct': structures/distinct.md
- 'Interval': structures/interval.md
- 'Join': structures/join.md
- 'Limit': structures/limit.md
- 'Operator': structures/operator.md
- 'Order': structures/order.md
- 'CastOperator': structures/cast_operator.md
- 'Query': structures/query.md
- Functions:
- 'Avg': functions/avg.md
- 'StringAgg': functions/string_agg.md
- 'Concat': functions/concat.md
- 'ConvertTimezone': functions/convert_timezone.md
- 'Count': functions/count.md
- 'CurrentDate': functions/current_date.md
- 'DateAdd': functions/date_add.md
- 'DateFormat': functions/date_format.md
- 'DateSub': functions/date_sub.md
- 'Extract': functions/extract.md
- 'GroupConcat': functions/group_concat.md
- 'Max': functions/max.md
- 'Min': functions/min.md
- 'Sum': functions/sum.md
- 'Weekday': functions/weekday.md
- 'Now': functions/now.md
- 'ToChar': functions/to_char.md
- 'ToDate': functions/to_date.md
- 'Unaccent': functions/unaccent.md
- 'Lower': functions/lower.md
- 'Upper': functions/upper.md
- 'InitCap': functions/initcap.md
# Repository
repo_name: 'Sibyx/duckql-python'
repo_url: 'https://github.com/Sibyx/duckql-python'
# Configuration
theme:
name: 'material'
custom_dir: docs/custom/
language: 'en'
features:
- instant
- tabs
# Extensions
markdown_extensions:
- codehilite:
guess_lang: false
- toc:
permalink: true