+ Foo is probably just foo in the end.
+
+```
+
+Note: tag names must be in the exact order as the default ones.
+
### Switch statement
Switch statements act like streamline conditionals. They are useful for when you want to compare a single variable against a series of constants.
@@ -201,6 +230,35 @@ locals: { foo: 'foo' }
Anything in the `expression` attribute is evaluated directly as an expressions.
+#### `switchTags`
+
+Type: `array`\
+Default: `['switch', 'case', 'default']`
+
+You can define custom tag names to use when creating a switch.
+
+Example:
+
+```js
+switchTags: ['clause', 'when', 'fallback']
+```
+
+```html
+