Reputation: 1213
I was wondering if there is a tool or generator that could auto indent my code after production from:
<div>
<div>
<p>
</p>
</div>
</div>
to:
<div>
<div>
<p>
</p>
</div>
</div>
Does something like this exist?
Upvotes: 2
Views: 3438
Reputation: 1199
You can try Pretty Diff, which can also handle JSLT type tags.
Upvotes: 3