-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
106 lines (102 loc) · 2.83 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
site_name: PHP Debug Bar
site_author: Barry vd. Heuvel
site_description: PHP Debug Bar
site_url: https://php-debugbar.com
repo_url: https://github.com/php-debugbar/php-debugbar
copyright: Copyright © Barry vd. Heuvel & Maxime Bouroumeau-Fuseau
nav:
- DebugBar: index.md
- Documentation:
- Getting started: docs/index.md
- docs/data-collectors.md
- docs/rendering.md
- docs/ajax-and-stack.md
- docs/data-formatter.md
- docs/storage.md
- docs/openhandler.md
- docs/http-drivers.md
- docs/javascript-bar.md
- Collectors:
- collectors/base.md
- collectors/bridge.md
theme:
name: material
custom_dir: docs/overrides
logo: assets/logo_white.png
favicon: assets/favicon.png
palette:
- primary: custom
accent: custom
scheme: default
features:
- navigation.tabs
- navigation.tabs.sticky
# - navigation.instant
- navigation.tracking
# - navigation.indexes
- navigation.top
- navigation.footer
- navigation.sections
- navigation.expand
- content.tooltips
- content.code.copy
- toc.follow
- toc.integrate
- search.highlight
- meta
extra_css:
- assets/extra.css
- assets/debugbar/vendor/font-awesome/css/font-awesome.min.css
- assets/debugbar/vendor/highlightjs/styles/github.css
- assets/debugbar/debugbar.css
- assets/debugbar/widgets.css
- assets/debugbar/openhandler.css
- assets/debugbar/widgets/mails/widget.css
- assets/debugbar/widgets/sqlqueries/widget.css
- assets/debugbar/widgets/templates/widget.css
extra_javascript:
- assets/debugbar/vendor/jquery/dist/jquery.min.js
- assets/debugbar/vendor/highlightjs/highlight.pack.js
- assets/debugbar/debugbar.js
- assets/debugbar/widgets.js
- assets/debugbar/openhandler.js
- assets/debugbar/widgets/mails/widget.js
- assets/debugbar/widgets/sqlqueries/widget.js
- assets/debugbar/widgets/templates/widget.js
markdown_extensions:
- admonition
- abbr
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
use_pygments: true
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
extend_pygments_lang:
- name: php
lang: php
options:
startinline: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.details
- toc:
permalink: true
- pymdownx.magiclink:
normalize_issue_symbols: true
repo_url_shorthand: true
user: php-debugbar
repo: php-debugbar
extra:
analytics:
provider: google
property: G-RRZHNXY76R
social:
- icon: fontawesome/brands/github
link: https://github.com/php-debugbar/php-debugbar
hooks:
- docs/overrides/shortcodes.py