linkedin/opticss

Demo Template Runner Doesn't Permute `---`

amiller-gh opened this issue · 1 comments

With the following input:

.foo { ... }
.bar { ... }
<div class="foo ( --- | bar )">Adam wuz here</div>

Only one permutation is emitted:

<div class="foo bar">Adam wuz here</div>

This permutation is omitted:

<div class="foo">Adam wuz here</div>