-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
47 lines (42 loc) · 1.38 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
site_name: Tapestry
site_description: Framework for writing and maintaining (postgres)SQL queries and (pgTAP) tests
repo_name: naiquevin/tapestry
repo_url: https://github.com/naiquevin/tapestry
copyright: Copyright © 2024 Vineet Naik
theme:
name: material
features:
- navigation.tabs
nav:
- Home: index.md
- User guide:
- user-guide/index.md
- Installation: user-guide/install.md
- Getting started: user-guide/getting-started.md
- Manifest: user-guide/manifest.md
- Query templates: user-guide/query-templates.md
- Test templates: user-guide/test-templates.md
- Layouts: user-guide/layouts.md
- Query Tags: user-guide/query-tags.md
- Naming conventions: user-guide/naming-conventions.md
- Commands: user-guide/commands.md
- SQL formatting:
- Overview: user-guide/formatting.md
- sqlformat: user-guide/sqlformat-rs.md
- pg_format: user-guide/pg-format.md
- sqlfluff: user-guide/sqlfluff.md
- sql-formatter: user-guide/sql-formatter.md
- Docker/Podman: user-guide/docker.md
- CD/CI integration: user-guide/cd-ci.md
- Rationale: rationale.md
markdown_extensions:
- admonition
- mdx_truly_sane_lists
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
plugins:
- search
- include-markdown:
preserve_includer_indent: true