5-72

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

markdown.json (4617B)


      1 {
      2   "$schema": "https://json-schema.org/draft-07/schema",
      3   "title": "Markdown extensions",
      4   "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/",
      5   "oneOf": [
      6     {
      7       "title": "Abbreviations – Python Markdown",
      8       "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#abbreviations",
      9       "enum": [
     10         "markdown.extensions.abbr",
     11         "abbr"
     12       ]
     13     },
     14     {
     15       "title": "Admonition – Python Markdown",
     16       "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#admonition",
     17       "enum": [
     18         "markdown.extensions.admonition",
     19         "admonition"
     20       ]
     21     },
     22     {
     23       "title": "Attribute Lists – Python Markdown",
     24       "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#attribute-lists",
     25       "enum": [
     26         "markdown.extensions.attr_list",
     27         "attr_list"
     28       ]
     29     },
     30     {
     31       "title": "Definition Lists – Python Markdown",
     32       "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#definition-lists",
     33       "enum": [
     34         "markdown.extensions.def_list",
     35         "def_list"
     36       ]
     37     },
     38     {
     39       "title": "Footnotes – Python Markdown",
     40       "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#footnotes",
     41       "enum": [
     42         "markdown.extensions.footnotes",
     43         "footnotes"
     44       ]
     45     },
     46     {
     47       "title": "Markdown in HTML – Python Markdown",
     48       "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#markdown-in-html",
     49       "enum": [
     50         "markdown.extensions.md_in_html",
     51         "md_in_html"
     52       ]
     53     },
     54     {
     55       "title": "Tables – Python Markdown",
     56       "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#tables",
     57       "enum": [
     58         "markdown.extensions.tables",
     59         "tables"
     60       ]
     61     },
     62     {
     63       "oneOf": [
     64         {
     65           "type": "object",
     66           "properties": {
     67             "toc": {
     68               "$ref": "#/definitions/toc"
     69             },
     70             "markdown.extensions.toc": {
     71               "$ref": "#/definitions/toc"
     72             }
     73           },
     74           "additionalProperties": false
     75         },
     76         {
     77           "title": "Table Of Contents – Python Markdown",
     78           "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#table-of-contents",
     79           "enum": [
     80             "markdown.extensions.toc",
     81             "toc"
     82           ]
     83         }
     84       ]
     85     }
     86   ],
     87   "definitions": {
     88     "toc": {
     89       "title": "Table Of Contents – Python Markdown",
     90       "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#table-of-contents",
     91       "type": "object",
     92       "properties": {
     93         "title": {
     94           "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#toc-title",
     95           "type": "string"
     96         },
     97         "permalink": {
     98           "oneOf": [
     99             {
    100               "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#toc-permalink",
    101               "type": "boolean"
    102             },
    103             {
    104               "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#toc-permalink",
    105               "type": "string"
    106             }
    107           ],
    108           "default": true
    109         },
    110         "anchorlink": {
    111           "markdownDescription": "https://python-markdown.github.io/extensions/toc/#usage",
    112           "type": "boolean",
    113           "default": false
    114         },
    115         "permalink_title": {
    116           "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#toc-permalink-title",
    117           "type": "string"
    118         },
    119         "slugify": {
    120           "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#toc-slugify",
    121           "type": "string"
    122         },
    123         "toc_depth": {
    124           "markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#toc-depth",
    125           "type": "number",
    126           "enum": [
    127             0,
    128             1,
    129             2,
    130             3,
    131             4,
    132             5,
    133             6
    134           ]
    135         }
    136       },
    137       "additionalProperties": false
    138     }
    139   }
    140 }