Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 241 Bytes

File metadata and controls

19 lines (16 loc) · 241 Bytes

Preserve self-closing tags (#13691 by @dcyriller)

{{! Input }}
<i />
<div />
<Component />

{{! Prettier stable }}
<i></i>
<div></div>
<Component />

{{! Prettier main }}
<i />
<div />
<Component />