diff --git a/fern/products/docs/pages/api-references/http-snippets.mdx b/fern/products/docs/pages/api-references/http-snippets.mdx index 49918fc84..35a8a6447 100644 --- a/fern/products/docs/pages/api-references/http-snippets.mdx +++ b/fern/products/docs/pages/api-references/http-snippets.mdx @@ -10,16 +10,20 @@ subtitle: HTTP snippets allow users to see API request examples using common HTT ## Configuration -HTTP snippets are enabled by default for all documentation sites. To disable snippets or enable only for certain languages, use the `settings.http-snippets` configuration in your `docs.yml` file: +All documentation sites include HTTP snippets by default. To control which languages appear in the HTTP snippet selector, use the `settings.http-snippets` configuration in your `docs.yml` file. + + + curl is always displayed in the HTTP snippets selector and can't be removed via `docs.yml` configuration. To hide it, [use custom CSS](/docs/customization/custom-css-js#custom-css). + ```yaml -# Turn off HTTP snippets for all languages +# Disable all HTTP snippets except curl settings: http-snippets: false -# Enable only for specific languages (here, only Python and Ruby) +# Enable only specific languages (in addition to curl) settings: http-snippets: - python