-
Notifications
You must be signed in to change notification settings - Fork 63
/
mkdocs.yml
67 lines (66 loc) · 1.5 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
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
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
primary: blue
accent: teal
toggle:
icon: material/lightbulb
name: Switch to light mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: blue
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:
- dblab: index.md
- quickstart.md
- Tutorials:
- First steps: tutorials/index.md
- tutorials/navigation.md
- Config File: tutorials/config-file.md
- usage.md
- features.md
- release-notes.md
- contribute.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