-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
mkdocs.yaml
38 lines (34 loc) · 1009 Bytes
/
mkdocs.yaml
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
site_name: dbdev
site_url: https://supabase.github.io/dbdev
site_description: A package manager for PostgreSQL trusted language extensions
repo_name: supabase/dbdev
repo_url: https://github.com/supabase/dbdev
nav:
- Welcome: 'index.md'
- Using the CLI: 'cli.md'
- Publish a Package: 'publish-extension.md'
- Install a Package: 'install-in-db-client.md'
- Structure of a Postgres Extension: 'extension_structure.md'
theme:
name: 'material'
favicon: 'assets/favicon.ico'
logo: 'assets/favicon.ico'
homepage: https://supabase.github.io/dbdev
features:
- navigation.expand
- content.code.copy
palette:
primary: black
accent: light green
markdown_extensions:
- pymdownx.highlight:
linenums: true
guess_lang: false
use_pygments: true
pygments_style: default
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.snippets
- pymdownx.tasklist
- admonition