When I type the following in sublime text 2 with emmet:
.one>label{foo}+input:r
I get one long line of code
<div class="one"><label for="">foo</label><input type="radio" name="" id=""></div>
is there any way to get emmet/sublime to output this style instead?
<div class="one">
<label for="">foo</label>
<input type="radio" name="" id="">
</div>
I tried playing around with the snippets.json with no success