forked from xenforo-ltd/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
96 lines (89 loc) · 2.59 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
site_name: Developer Documentation
site_description: Developer documentation for XenForo
site_author: XenForo Ltd.
site_url: https://xenforo.com/docs/dev/
copyright: <a href="https://xenforo.com/" target="_blank">Developer documentation for XenForo<sup>®</sup> © 2010-2023 XenForo Ltd.</a>
nav:
- Overview: index.md
- Site Administrators (or common):
- Template syntax: template-syntax.md
- REST API: rest-api.md
- Developers:
- Add-on structure: add-on-structure.md
- Development tools: development-tools.md
- General concepts: general-concepts.md
- Routing basics: routing-basics.md
- Controller basics: controller-basics.md
- Entities, finders, and repositories: entities-finders-repositories.md
- Criteria: criteria.md
- Managing the schema: managing-the-schema.md
- Let's build an add-on: lets-build-an-add-on.md
- Designers:
- Designing styles: designing-styles.md
- Template syntax: template-syntax.md
- Appendix(es):
- macOS Dev Environment: macos-dev.md
- Linux Dev Environment: linux-dev.md
- Windows Dev Environment: windows-dev.md
- Visual Studio Code and Xdebug: vscode.md
theme:
name: material
custom_dir: overrides
font:
text: Nunito Sans
code: JetBrains Mono
logo: images/logo.svg
favicon: images/favicon.png
icon:
repo: fontawesome/brands/github
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: custom
toggle:
icon: material/brightness-7
name: Dark
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/brightness-4
name: Light
features:
- content.action.edit
- content.code.copy
- navigation.footer
- navigation.instant
- navigation.tracking
- search.share
- toc.follow
extra_css:
- css/extra.css?v=4
extra_javascript:
- https://unpkg.com/[email protected]/dist/tablesort.min.js
- js/extra.js?v=4
markdown_extensions:
- admonition
- pymdownx.emoji:
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight:
auto_title: true
anchor_linenums: true
extend_pygments_lang:
- name: php
lang: php
options:
startinline: true
line_spans: __span
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- toc:
permalink: "#"
repo_name: xenforo-ltd/docs
repo_url: https://github.com/xenforo-ltd/docs/
edit_uri: edit/main/docs/
extra:
generator: false