File: mkdocs.yml

package info (click to toggle)
rust-taskwarrior-tui 0.26.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,060 kB
  • sloc: sh: 71; makefile: 9
file content (57 lines) | stat: -rw-r--r-- 1,245 bytes parent folder | download | duplicates (2)
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
site_name: taskwarrior-tui - A terminal user interface for taskwarrior
site_url: https://kdheepak.com/taskwarrior-tui
site_author: Dheepak Krishnamurthy

# Source code repository
repo_name: kdheepak/taskwarrior-tui
repo_url: https://github.com/kdheepak/taskwarrior-tui

# Copyright
copyright: Copyright © 2021 Dheepak Krishnamurthy

markdown_extensions:
  - admonition
  - attr_list
  - footnotes
  - pymdownx.highlight
  - pymdownx.superfences

# Plugins
plugins:
  - search
  - exclude:
      glob:
        - '*.1'

# Theme
theme:
  name: material
  favicon: assets/favicon.png
  features:
    - navigation.tabs
  include_search_page: false
  language: en
  palette:
    primary: deep blue
  search_index_only: true

# Customization
extra:
  social:
    - icon: fontawesome/brands/github
      link: https://github.com/kdheepak

# Page tree
nav:
  - Home: index.md
  - Getting Started:
      - Installation: installation.md
      - Quick Start: quick_start.md
      - Keybindings: keybindings.md
      - FAQs: faqs.md
  - Configuration:
      - Key configuration: configuration/keys.md
      - Color configuration: configuration/colors.md
      - Advanced: configuration/advanced.md
  - Developer Guide:
      - Guide: developer/guide.md