-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
123 lines (110 loc) · 3.61 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
# Project information
site_name: AutoNumeric.js
site_description: Official AutoNumeric documentation
site_author: Alexandre Bonneau
site_url: https://docs.autonumeric.org/
use_directory_urls: true
# Repository information
repo_url: https://github.com/autoNumeric/autoNumeric/
repo_name: autoNumeric/autoNumeric
edit_uri: https://github.com/autoNumeric/autonumeric-docs/tree/master/docs
copyright: 'Made with ❤ in France'
# Main navigation
nav:
- User documentation:
- AutoNumeric.js documentation: index.md
- Try AutoNumeric: Documentation/demo.md
- Getting Started:
- Installation: Documentation/installation.md
- How to use?: Documentation/how to use.md
- On which elements can it be used?: Documentation/on which elements can it be used.md
- Initialization: Documentation/initialization.md
- Options:
- Configuration options: Documentation/configuration options.md
- Predefined options: Documentation/predefined options.md
- Special options: Documentation/special options.md
- Updating existing options: Documentation/updating options.md
- Methods:
- Accessing the methods: Documentation/methods.md
- Instantiated methods: Documentation/instantiated methods.md
- Static methods: Documentation/static methods.md
- Formula mode: Documentation/formula mode.md
- Event lifecycle: Documentation/event lifecycle.md
- Old versions:
- Deprecated documentation: Old documentation/deprecated documentation.md
- v1.9 documentation: Old documentation/v1.9 documentation.md
- v2.0 documentation: Old documentation/v2.0 documentation.md
- Developer guide:
- How to contribute?: Developer guide/how to contribute.md
- How to upgrade to v4: Developer guide/how to upgrade to v4.md
- Dependencies: Developer guide/dependencies.md
- Support:
- Support: Documentation/support.md
- Related projects: Documentation/related projects.md
- Older versions: Documentation/older versions.md
- Changelog: Changelog/CHANGELOG.md
- About:
- About: About/about.md
- License:
- Public license: About/license.md
- Documentation: About/documention license.md
# Project paths
docs_dir: docs
#site_dir: site
# Theme configuration
theme:
name: material
logo: assets/logo_AutoNumeric_152x152.png
favicon: assets/favicon-32x32.png
palette:
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue
accent: light blue
toggle:
icon: material/brightness-4
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue
accent: blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
language: en
features:
- content.code.annotate
- navigation.tracking
- navigation.tabs
#- navigation.tabs.sticky
- navigation.sections
- navigation.expand
#- toc.integrate
- navigation.top
extra_css:
- stylesheets/extra.css
# MkDocs extensions
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
- pymdownx.superfences
- def_list
- footnotes
# Icons
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
# Plugins
#plugins:
# - privacy