blaze-html icon indicating copy to clipboard operation
blaze-html copied to clipboard

Attribute Semigroup with same AttributeName do not Combine Values

Open BebeSparkelSparkel opened this issue 5 years ago • 0 comments

Two class attributes are created instead of just one with their values combined.

> renderHtml $ div ! (class_ "hi" <> class_ "there") $ "innerhtml"
<div class="hi" class="there">innerhtml</div>

BebeSparkelSparkel avatar May 28 '19 13:05 BebeSparkelSparkel