Case
The case statement is a shorthand for JavaScript’s switch statement. It takes the following form:
Case Fall Through
You can use fall through, just as you would in a JavaScript switch statement.
The difference, however, is a fall through in JavaScript happens whenever a break statement is not explicitly included; in Pug, it only happens when a block is completely missing.
If you would like to not output anything in a specific case, add an explicit unbuffered break:
Block Expansion
Block expansion may also be used: