Sublime-HTMLPrettify icon indicating copy to clipboard operation
Sublime-HTMLPrettify copied to clipboard

inline tags not processed?

Open kot-shrodingera opened this issue 4 years ago • 0 comments

This code doesn't get formatted

<div class="outer"><span class="inner">Text</span></div>

But if I change span to div, then it's successfully formatting

<div class="outer">
    <div class="inner">Text</div>
</div>

Why is that? I want inline tag to be formatted just as block tags

kot-shrodingera avatar Aug 25 '20 16:08 kot-shrodingera