5-72

5-72.com helps novice musicians master sound engineering by analyzing the FX chains of world-famous artists
Log | Files | Refs

plugins.json (2198B)


      1 {
      2   "$schema": "https://json-schema.org/draft-07/schema",
      3   "title": "Plugins",
      4   "markdownDescription": "https://www.mkdocs.org/dev-guide/plugins/",
      5   "type": "array",
      6   "items": {
      7     "oneOf": [
      8       {
      9         "$ref": "#/definitions/built-in"
     10       },
     11       {
     12         "$ref": "#/definitions/external"
     13       },
     14       {
     15         "$ref": "#/definitions/external-community"
     16       }
     17     ]
     18   },
     19   "uniqueItems": true,
     20   "minItems": 1,
     21   "definitions": {
     22     "built-in": {
     23       "description": "Built-in plugins",
     24       "oneOf": [
     25         {
     26           "$ref": "plugins/meta.json"
     27         },
     28         {
     29           "$ref": "plugins/offline.json"
     30         },
     31         {
     32           "$ref": "plugins/privacy.json"
     33         },
     34         {
     35           "$ref": "plugins/search.json"
     36         },
     37         {
     38           "$ref": "plugins/social.json"
     39         },
     40         {
     41           "$ref": "plugins/tags.json"
     42         }
     43       ]
     44     },
     45     "external": {
     46       "description": "External plugins, schema provided by us",
     47       "oneOf": [
     48         {
     49           "$ref": "plugins/external/git-authors.json"
     50         },
     51         {
     52           "$ref": "plugins/external/git-committers.json"
     53         },
     54         {
     55           "$ref": "plugins/external/git-revision-date.json"
     56         },
     57         {
     58           "$ref": "plugins/external/minify.json"
     59         },
     60         {
     61           "$ref": "plugins/external/redirects.json"
     62         }
     63       ]
     64     },
     65     "external-community": {
     66       "description": "External plugins, schema provided by the community",
     67       "oneOf": [
     68         {
     69           "$ref": "https://raw.githubusercontent.com/mondeja/mkdocs-include-markdown-plugin/master/schema.json"
     70         },
     71         {
     72           "$ref": "https://raw.githubusercontent.com/mondeja/mkdocs-material-relative-language-selector/master/schema.json"
     73         },
     74         {
     75           "$ref": "https://raw.githubusercontent.com/Guts/mkdocs-rss-plugin/main/docs/schema.json"
     76         },
     77         {
     78           "$ref": "https://raw.githubusercontent.com/timvink/mkdocs-git-revision-date-localized-plugin/master/docs/schema.json"
     79         },
     80         {
     81           "$ref": "https://raw.githubusercontent.com/blueswen/mkdocs-glightbox/main/schema.json"
     82         }
     83       ]
     84     }
     85   }
     86 }