I am trying to use sublimetext3 for editing html.
If I do
ul
tab, then it generates <ul></ul>
if I do
ul.temp
tab, then it generates <ul class="temp"></ul>
however, when I am trying
ul>li.temp
tab, it is generating ul><li class="temp"></li>
What I am expecting to see is <ul><li class="temp"></li></ul>
I have package control. What am I missing in getting this functionality?