-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmkdocs.yml
More file actions
68 lines (64 loc) · 1.86 KB
/
mkdocs.yml
File metadata and controls
68 lines (64 loc) · 1.86 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: nless
site_url: https://mpryor.github.io/nothing-less/
site_description: A TUI pager for exploring and analyzing tabular data with vi-like keybindings
repo_url: https://github.com/mpryor/nothing-less
repo_name: mpryor/nothing-less
theme:
name: material
logo: assets/nless-logo.png
favicon: assets/nless-logo.png
palette:
- scheme: slate
primary: custom
accent: green
toggle:
icon: material/brightness-4
name: Switch to light mode
- scheme: default
primary: custom
accent: green
toggle:
icon: material/brightness-7
name: Switch to dark mode
features:
- navigation.instant
- navigation.sections
- toc.integrate
- content.code.copy
- search.highlight
- search.suggest
- navigation.footer
nav:
- Home: index.md
- Getting Started: getting-started.md
- Tutorials: tutorials.md
- Keybindings: keybindings.md
- Configuration: configuration.md
- Internals:
- Overview: internals/index.md
- State Architecture: internals/state-architecture.md
- Threading Model: internals/threading.md
- Streaming Pipeline: internals/streaming-pipeline.md
- Delimiter Inference: internals/delimiter-inference.md
- Copy & History: internals/copy-and-history.md
- Column Operations: internals/column-operations.md
- Log Format Detection: internals/log-format-detection.md
- Time Windows: internals/time-windows.md
- Session Persistence: internals/sessions.md
- Custom Rendering: internals/custom-rendering.md
- Contributing: contributing.md
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.snippets:
check_paths: true
- attr_list
- md_in_html
- tables
- toc:
permalink: true
extra_css:
- stylesheets/extra.css