5-72

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

redirects.json (1533B)


      1 {
      2   "$schema": "https://json-schema.org/draft-07/schema",
      3   "title": "Redirects plugin",
      4   "type": "object",
      5   "properties": {
      6     "redirects": {
      7       "markdownDescription": "https://github.com/datarobot/mkdocs-redirects",
      8       "type": "object",
      9       "properties": {
     10         "redirect_maps": {
     11           "title": "Mapping of Markdown files",
     12           "markdownDescription": "https://github.com/datarobot/mkdocs-redirects#using",
     13           "type": "object",
     14           "patternProperties": {
     15             "\\.md$": {
     16               "oneOf": [
     17                 {
     18                   "title": "Internal redirect",
     19                   "markdownDescription": "https://github.com/datarobot/mkdocs-redirects#using",
     20                   "pattern": "\\.md$"
     21                 },
     22                 {
     23                   "title": "External redirect",
     24                   "markdownDescription": "https://github.com/datarobot/mkdocs-redirects#using",
     25                   "pattern": "^https?:"
     26                 }
     27               ]
     28             }
     29           },
     30           "defaultSnippets": [
     31             {
     32               "label": "Internal redirect",
     33               "body": {
     34                 "${1:from}.md": "${2:to}.md"
     35               }
     36             },
     37             {
     38               "label": "External redirect",
     39               "body": {
     40                 "${1:from}.md": "https://${2:to.url}"
     41               }
     42             }
     43           ],
     44           "additionalProperties": false
     45         }
     46       },
     47       "additionalProperties": false
     48     }
     49   },
     50   "additionalProperties": false
     51 }