File tree 7 files changed +217
-61
lines changed
7 files changed +217
-61
lines changed Original file line number Diff line number Diff line change 48
48
run : |
49
49
pip install .
50
50
pip install \
51
+ mkdocs-git-committers-plugin-2>=0.4 \
52
+ mkdocs-git-revision-date-plugin>=0.3 \
51
53
mkdocs-minify-plugin>=0.3 \
52
54
mkdocs-redirects>=1.0 \
53
55
mkdocs-rss-plugin>=0.17
Original file line number Diff line number Diff line change @@ -180,9 +180,10 @@ which are currently exclusively available to sponsors:
180
180
181
181
<div class =" mdx-columns " markdown >
182
182
183
+ - [x] [ Document contributors] :material-alert-decagram:{ .mdx-pulse title="Added on June 24, 2022" }
183
184
- [x] [ Automatic light / dark mode] :material-alert-decagram:{ .mdx-pulse title="Added on June 11, 2022" }
184
185
- [x] [ Content tabs: anchor links] :material-alert-decagram:{ .mdx-pulse title="Added on June 4, 2022" }
185
- - [x] [ Navigation pruning] :material-alert-decagram:{ .mdx-pulse title="Added on May 25, 2022" }
186
+ - [x] [ Navigation pruning]
186
187
- [x] [ Tooltips]
187
188
- [x] [ Chinese search support]
188
189
- [x] [ Tag icons]
@@ -281,13 +282,14 @@ are released for general availability.
281
282
- [x] [ Tooltips]
282
283
- [x] [ Content tabs: anchor links]
283
284
- [x] [ Automatic light / dark mode]
284
- - [ ] Document authors/ contributors
285
+ - [x] [ Document contributors]
285
286
286
287
[ Privacy plugin ] : ../setup/ensuring-data-privacy.md
287
288
[ Card grids ] : ../reference/grids.md
288
289
[ Tooltips ] : ../reference/tooltips.md
289
290
[ Content tabs: anchor links ] : ../reference/content-tabs.md#anchor-links
290
291
[ Automatic light / dark mode ] : ../setup/changing-the-colors.md#automatic-light-dark-mode
292
+ [ Document contributors ] : ../setup/adding-a-git-repository.md#document-contributors
291
293
292
294
#### $ 16,000 – Chipotle
293
295
Original file line number Diff line number Diff line change 42
42
"external" : {
43
43
"description" : " External plugins, schema provided by us" ,
44
44
"oneOf" : [
45
+ {
46
+ "$ref" : " plugins/external/git-authors.json"
47
+ },
48
+ {
49
+ "$ref" : " plugins/external/git-committers.json"
50
+ },
45
51
{
46
52
"$ref" : " plugins/external/git-revision-date.json"
47
53
},
Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : " https://json-schema.org/draft-07/schema" ,
3
+ "title" : " Git authors plugin" ,
4
+ "oneOf" : [
5
+ {
6
+ "markdownDescription" : " https://timvink.github.io/mkdocs-git-authors-plugin/" ,
7
+ "enum" : [
8
+ " git-authors"
9
+ ]
10
+ },
11
+ {
12
+ "type" : " object" ,
13
+ "properties" : {
14
+ "git-authors" : {
15
+ "markdownDescription" : " https://timvink.github.io/mkdocs-git-authors-plugin/options.html" ,
16
+ "type" : " object" ,
17
+ "properties" : {
18
+ "enabled" : {
19
+ "title" : " Enable plugin" ,
20
+ "markdownDescription" : " https://timvink.github.io/mkdocs-git-authors-plugin/options.html#enabled" ,
21
+ "type" : " boolean" ,
22
+ "default" : true
23
+ },
24
+ "exclude" : {
25
+ "title" : " List of Markdown file patterns" ,
26
+ "markdownDescription" : " https://timvink.github.io/mkdocs-git-authors-plugin/options.html#exclude" ,
27
+ "type" : " array" ,
28
+ "items" : {
29
+ "pattern" : " (\\ *|\\ .md)$"
30
+ }
31
+ }
32
+ },
33
+ "additionalProperties" : false
34
+ }
35
+ },
36
+ "additionalProperties" : false
37
+ }
38
+ ]
39
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : " https://json-schema.org/draft-07/schema" ,
3
+ "title" : " Git committers plugin" ,
4
+ "oneOf" : [
5
+ {
6
+ "markdownDescription" : " https://github.com/ojacques/mkdocs-git-committers-plugin-2" ,
7
+ "enum" : [
8
+ " git-committers"
9
+ ]
10
+ },
11
+ {
12
+ "type" : " object" ,
13
+ "properties" : {
14
+ "git-authors" : {
15
+ "markdownDescription" : " https://github.com/ojacques/mkdocs-git-committers-plugin-2" ,
16
+ "type" : " object" ,
17
+ "properties" : {
18
+ "enabled" : {
19
+ "title" : " Enable plugin" ,
20
+ "markdownDescription" : " https://github.com/ojacques/mkdocs-git-committers-plugin-2#config" ,
21
+ "type" : " boolean" ,
22
+ "default" : true
23
+ },
24
+ "repository" : {
25
+ "title" : " Repository slug" ,
26
+ "markdownDescription" : " https://github.com/ojacques/mkdocs-git-committers-plugin-2#config" ,
27
+ "type" : " string"
28
+ },
29
+ "token" : {
30
+ "title" : " Personal access token" ,
31
+ "markdownDescription" : " https://github.com/ojacques/mkdocs-git-committers-plugin-2#config" ,
32
+ "type" : " string"
33
+ }
34
+ },
35
+ "additionalProperties" : false ,
36
+ "required" : [
37
+ " repository"
38
+ ]
39
+ }
40
+ },
41
+ "additionalProperties" : false
42
+ }
43
+ ]
44
+ }
You can’t perform that action at this time.
0 commit comments