-
-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Expand file tree
/
Copy pathmkdocs.yml
More file actions
124 lines (124 loc) · 4.16 KB
/
Copy pathmkdocs.yml
File metadata and controls
124 lines (124 loc) · 4.16 KB
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
124
site_name: Select2
site_description: The jQuery replacement for select boxes
site_url: https://select2.org
repo_url: https://github.com/select2/select2
repo_name: select2/select2
watch:
- docs
docs_dir: docs
theme:
name: material
custom_dir: docs/overrides
logo: images/logo.png
favicon: images/favicon.ico
palette:
- media: "(prefers-color-scheme)"
primary: blue-grey
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
primary: blue-grey
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
primary: blue-grey
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
features:
- content.code.select
- content.code.copy
- search.suggest
- search.share
extra_css:
- overrides/custom.css
extra_javascript: # jQuery and Select2 via CDNJS
- https://cdn.jsdelivr.net/npm/jquery@4.0.0/dist/jquery.min.js
- https://cdn.jsdelivr.net/npm/select2@4.1.0/dist/js/select2.full.min.js
extra:
analytics:
provider: google
property: G-RR7B0FYMWM
plugins:
- search
- git-revision-date-localized:
enabled: !ENV [CI, false]
- git-committers:
enabled: !ENV [CI, false]
repository: select2/select2
branch: develop
exclude_committers:
- dependabot[bot]
- pre-commit-ci[bot]
- web-flow
- Copilot
- redirects:
redirect_maps:
'troubleshooting/README.md': 'troubleshooting/getting-help.md'
'configuration/README.md': 'configuration/options-api.md'
'data-sources/README.md': 'data-sources/formats.md'
'programmatic-control/README.md': 'programmatic-control/add-select-clear-items.md'
'advanced/README.md': 'advanced/adapters-and-decorators.md'
'advanced/default-adapters/README.md': 'advanced/default-adapters/selection.md'
'upgrading/README.md': 'upgrading/new-in-40.md'
markdown_extensions:
- admonition
- attr_list
- def_list
- md_in_html
- tables
- toc:
permalink: true
- github-callouts
- pymdownx.highlight:
use_pygments: true
- pymdownx.superfences
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
nav:
- Home: README.md
- Getting started:
- Installation: getting-started/installation.md
- Basic usage: getting-started/basic-usage.md
- Builds and modules: getting-started/builds-and-modules.md
- Troubleshooting:
- Getting help: troubleshooting/getting-help.md
- Common problems: troubleshooting/common-problems.md
- Configuration:
- Options API: configuration/options-api.md
- Global defaults: configuration/defaults.md
- data-* attributes: configuration/data-attributes.md
- Appearance: appearance.md
- Options: options.md
- Data sources:
- The Select2 data format: data-sources/formats.md
- Ajax (remote data): data-sources/ajax.md
- Arrays: data-sources/arrays.md
- Dropdown: dropdown.md
- Selections: selections.md
- Dynamic option creation: tagging.md
- Placeholders: placeholders.md
- Search: searching.md
- Programmatic control:
- Add, select, or clear items: programmatic-control/add-select-clear-items.md
- Retrieving selections: programmatic-control/retrieving-selections.md
- Methods: programmatic-control/methods.md
- Events: programmatic-control/events.md
- Internationalization: i18n.md
- Advanced:
- Adapters and decorators: advanced/adapters-and-decorators.md
- Built-in adapters:
- Selection: advanced/default-adapters/selection.md
- Array: advanced/default-adapters/array.md
- Ajax: advanced/default-adapters/ajax.md
- SelectAdapter: advanced/default-adapters/data.md
- Results: advanced/default-adapters/results.md
- Dropdown: advanced/default-adapters/dropdown.md
- Upgrading:
- What's new in 4.0: upgrading/new-in-40.md
- Migrating from Select2 3.5: upgrading/migrating-from-35.md