- Description:
This key toggles whether CloudCannon will allow any string case type when parsing snippet parameters.
Setting this key to
truewill allow any case type (uppercase, lowercase, mixed case) in snippet parameter parsing.By default, this key is
false(i.e., case restrictions apply based on otherallowed_string_casessettings).- Appears in:
└── Snippet Format └── allowed_string_cases └── any- Type:
boolean- Examples:
In this example, we have configured snippet format to allow any string case type.
Copied to clipboard_snippets: example: snippet: <<example [[param]]>> params: param: parser: argument options: format: allowed_string_cases: any: true{ "_snippets": { "example": { "snippet": "<<example [[param]]>>", "params": { "param": { "parser": "argument", "options": { "format": { "allowed_string_cases": { "any": true } } } } } } } }