-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathmkdocs.yml
More file actions
68 lines (67 loc) · 1.64 KB
/
mkdocs.yml
File metadata and controls
68 lines (67 loc) · 1.64 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
site_name: dblab
site_description: dblab is a fast and lightweight interactive terminal based UI application for PostgreSQL, MySQL and SQLite3, written in Go and works on OSX, Linux and Windows machines.
site_url: https://dblab.danvergara.com/
theme:
name: material
theme:
features:
- content.code.copy
favicon: assets/images/favicon.ico
logo: assets/images/dblab-logo.png
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
primary: indigo
accent: teal
toggle:
icon: material/lightbulb
name: Switch to light mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: indigo
accent: teal
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
repo_name: danvergara/dblab
repo_url: https://github.com/danvergara/dblab
edit_uri: ''
plugins:
- search
- termynal
nav:
- Home: index.md
- Quickstart: quickstart.md
- Usage: usage.md
- Tutorials:
- Getting Started: tutorials/index.md
- Navigation: tutorials/navigation.md
- Config File: tutorials/config-file.md
- Contribute: contribute.md
- Release Notes: release-notes.md
markdown_extensions:
- toc:
permalink: true
- def_list
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- markdown.extensions.codehilite:
guess_lang: false
- admonition
- codehilite
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format ''
- pymdownx.tabbed:
alternate_style: true
- attr_list
- md_in_html
extra_css:
- css/extra.css