I just switched from version 2 to version 3. On ST2, I tweaked the .PY file under the HTML package to achieve a custom auto-indentation like so:
<my_tag>
My Text
</my_tag>
Which is basically:
<my_tag>
(blank line)
(tab)My Text
(blank line)
</my_tag>
It's my personal preference to write HTML that way. On ST3 however, there don't seem to be any .PY files . So I'm stuck with the following default auto-indentation:
<my_tag>
My Text
</my_tag>
How do I get my custom HTML auto-indentation to work on ST3?