-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
46 lines (36 loc) · 1 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
# Do not modify below line! Inherits common components.
INHERIT: ./docs/_global/mkdocs.yml
#### Site metadata & nav - update these!
site_name: Adobe Animate Scripting Guide
site_url: https://an-scripting.docsforadobe.dev/
repo_url: https://github.com/docsforadobe/animate-scripting-guide/
repo_name: "animate-scripting-guide"
nav:
- Home: index.md
- Window:
- Window object: window/window.md
- Document:
- Document object: document/document.md
- App:
- Application object: app/app.md
#### Additional config below - modify sparingly!
extra:
# Custom guide-specific overrides
#
# Valid keys are:
# custom_dir: str
# hooks:
# - path/to/hook.py
# not_in_nav:
# - gitignore_style/path/to/exclude
# theme_features:
# - theme.feature
overrides: {}
# CSS for this guide
extra_css:
- _static/extra.css
# JS for this guide
extra_javascript:
- _static/extra.js
markdown_extensions: {}
plugins: {}