-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
70 lines (64 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
68
69
70
site_name: pytokei
site_description: Python bindings to tokei, the Rust library to count code quickly.
site_url: https://plaguss.github.io/pytokei
theme:
name: "material"
palette:
- scheme: default
primary: blue grey
accent: orange
toggle:
icon: material/lightbulb
name: Switch to dark mode
- scheme: slate
primary: blue grey
accent: orange
toggle:
icon: material/lightbulb
name: Switch to light mode
features:
- content.code.annotate
- search.suggest
- search.highlight
- content.tabs.link
language: en
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- codehilite
- toc:
permalink: true
- pymdownx.details
- attr_list
- md_in_html
repo_name: plaguss/pytokei
repo_url: https://github.com/plaguss/pytokei
edit_uri: ""
plugins:
- search
- mkdocstrings:
handlers:
python:
rendering:
show_root_heading: true
show_root_full_path: false
show_source: false
heading_level: 2
merge_init_into_class: true
show_signature_annotations: true
separate_signature: true
nav:
- Intro: index.md
- Usage: usage.md
- CLI: cli.md
- API:
- api/config.md
- api/language_type.md
- api/language.md
- api/languages.md
- api/sort.md
- api/stats.md