File tree Expand file tree Collapse file tree 7 files changed +217
-61
lines changed Expand file tree Collapse file tree 7 files changed +217
-61
lines changed Original file line number Diff line number Diff line change 4848 run : |
4949 pip install .
5050 pip install \
51+ mkdocs-git-committers-plugin-2>=0.4 \
52+ mkdocs-git-revision-date-plugin>=0.3 \
5153 mkdocs-minify-plugin>=0.3 \
5254 mkdocs-redirects>=1.0 \
5355 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:
180180
181181<div class =" mdx-columns " markdown >
182182
183+ - [x] [ Document contributors] :material-alert-decagram:{ .mdx-pulse title="Added on June 24, 2022" }
183184- [x] [ Automatic light / dark mode] :material-alert-decagram:{ .mdx-pulse title="Added on June 11, 2022" }
184185- [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]
186187- [x] [ Tooltips]
187188- [x] [ Chinese search support]
188189- [x] [ Tag icons]
@@ -281,13 +282,14 @@ are released for general availability.
281282- [x] [ Tooltips]
282283- [x] [ Content tabs: anchor links]
283284- [x] [ Automatic light / dark mode]
284- - [ ] Document authors/ contributors
285+ - [x] [ Document contributors]
285286
286287 [ Privacy plugin ] : ../setup/ensuring-data-privacy.md
287288 [ Card grids ] : ../reference/grids.md
288289 [ Tooltips ] : ../reference/tooltips.md
289290 [ Content tabs: anchor links ] : ../reference/content-tabs.md#anchor-links
290291 [ Automatic light / dark mode ] : ../setup/changing-the-colors.md#automatic-light-dark-mode
292+ [ Document contributors ] : ../setup/adding-a-git-repository.md#document-contributors
291293
292294#### $ 16,000 – Chipotle
293295
Original file line number Diff line number Diff line change 4242 "external" : {
4343 "description" : " External plugins, schema provided by us" ,
4444 "oneOf" : [
45+ {
46+ "$ref" : " plugins/external/git-authors.json"
47+ },
48+ {
49+ "$ref" : " plugins/external/git-committers.json"
50+ },
4551 {
4652 "$ref" : " plugins/external/git-revision-date.json"
4753 },
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