forked from IL-Group/FL-Studio-API-Stubs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
81 lines (73 loc) · 1.97 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
site_name: FL Studio Python API
site_description: Documentation for the FL Studio Python API
repo_name: "IL-Group/FL-Studio-API-Stubs"
repo_url: https://github.com/IL-Group/FL-Studio-API-Stubs
copyright: © 2024 Image Line Software
# Build to a temporary directory
site_dir: temp_site
theme:
name: material
palette:
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: orange
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: orange
toggle:
icon: material/lightbulb
name: Switch to dark mode
logo: assets/logo-monochrome.png
favicon: assets/logo.png
icon:
repo: fontawesome/brands/github
code: fontawesome/solid/code
features:
- navigation.tracking
- navigation.instant
- navigation.instant.prefetch
- content.code.copy
plugins:
- awesome-pages:
collapse_single_pages: true
- section-index
- autorefs
- mkdocstrings:
handlers:
python:
paths:
- prebuild_docs/midi_controller_scripting
- prebuild_docs/edison_scripting
- prebuild_docs/piano_roll_scripting
options:
show_source: false
show_signature_annotations: true
separate_signature: true
members_order: source
- search
## Not using mkdocs scripts since we need to do a ton of pre-build stuff
## Maybe I'll try and get this working some point
# - gen-files:
# scripts:
# - scripts/generate_pages.py
markdown_extensions:
- toc:
title: Contents
toc_depth: 2
- admonition
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
extra_css:
- stylesheets/extra.css
extra_javascript:
- javascript/removeDunderToc.js
docs_dir: build_docs