Steps to reproduce:
It would be nice if HTML elements, nested elements and EJS tags inside EJS tags got indent on format
Current:
<% if (true) { %>
<% array.forEach(element => { %>
<% for( let index = 0; index < array.length; index++ ) { %>
<% } else if ({:condition}) { %>
<% if (condition) { %>
<% } %>
<% } %>
<% }) %>
<% } %>
Expected result:
<% if (true) { %>
<% array.forEach(element => { %>
<% for( let index = 0; index < array.length; index++ ) { %>
<% } else if ({:condition}) { %>
<% if (condition) { %>
<% } %>
<% } %>
<% }) %>
<% } %>
Steps to reproduce:
It would be nice if HTML elements, nested elements and EJS tags inside EJS tags got indent on format
Current:
Expected result: