-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
82 lines (75 loc) · 1.81 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
71
72
73
74
75
76
77
78
79
80
81
82
# Project information
site_name: containerlog
site_description: Optimized, opinionated structured logging intended for containerized applications.
site_author: Erick Daniszewski
copyright: 'Copyright © 2020'
# Repository
repo_name: containerlog
repo_url: https://github.com/vapor-ware/containerlog
edit_uri: tree/master/docs
# Navigation
nav:
- Overview: index.md
- Install: install.md
- Usage:
- Basic: usage/basic.md
- 'Proxying to Standard Loggers': usage/proxy_std.md
- Benchmarks: benchmarks.md
- Contributing: contributing.md
# Configuration
theme:
name: material
features:
- tabs
- instant
palette:
primary: black
accent: amber
font:
text: Roboto
code: Roboto Mono
favicon: logs.ico
logo: logs.svg
# Don't include MkDocs' JavaScript
include_search_page: false
search_index_only: true
extra:
social:
- icon: fontawesome/solid/dice-d20
link: https://www.flaticon.com/authors/freepik
name: Icon made by Freepik from Flaticon
# Plugins
plugins:
- search
# Extensions
markdown_extensions:
- markdown.extensions.admonition
- markdown.extensions.codehilite:
guess_lang: false
- markdown.extensions.attr_list
- markdown.extensions.def_list
- markdown.extensions.footnotes
- markdown.extensions.meta
- markdown.extensions.tables
- markdown.extensions.toc:
permalink: true
toc_depth: 3
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: vapor-ware
repo: containerlog
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde