diff --git a/docs/usage/configuration.md b/docs/usage/configuration.md index 17faa008e64..38c54f02479 100644 --- a/docs/usage/configuration.md +++ b/docs/usage/configuration.md @@ -72,7 +72,7 @@ Parameter name | Docker variable | Description `syntaxHighlight.activate` | _Unavailable_ | `Boolean=true`. Whether syntax highlighting should be activated or not. `syntaxHighlight.theme` | _Unavailable_ | `String=["agate"*, "arta", "monokai", "nord", "obsidian", "tomorrow-night"]`. [Highlight.js](https://highlightjs.org/static/demo/) syntax coloring theme to use. (Only these 6 styles are available.) `tryItOutEnabled` | `TRY_IT_OUT_ENABLED` | `Boolean=false`. Controls whether the "Try it out" section should be enabled by default. -`requestSnippets` | _Unavailable_ | `Object`. This is the default configuration section for the the requestSnippets plugin.
requestSnippets: {
  generators: {
    "curl_bash": {
      title: "cURL (bash)",
      syntax: "bash"
    },
    "curl_powershell": {
      title: "cURL (PowerShell)",
      syntax: "powershell"
    },
    "curl_cmd": {
      title: "cURL (CMD)",
      syntax: "bash"
    },
  },
  defaultExpanded: true,
  languagesMask: null, // e.g. only show curl bash = \["curl_bash"\]
}, +`requestSnippets` | _Unavailable_ | `Object`. This is the default configuration section for the the requestSnippets plugin.
requestSnippets: {
  generators: {
    "curl_bash": {
      title: "cURL (bash)",
      syntax: "bash"
    },
    "curl_powershell": {
      title: "cURL (PowerShell)",
      syntax: "powershell"
    },
    "curl_cmd": {
      title: "cURL (CMD)",
      syntax: "bash"
    },
  },
  defaultExpanded: true,
  languages: null, // e.g. only show curl bash = \["curl_bash"\]
}, ##### Network