I am creating a custom snippet in sublime text 3 with following code but somehow it's not working when I type my desire tabTrigger with pressing the tab
<snippet>
<content><![CDATA[alter pot water it your pot.]]></content>
<!-- Optional: Tab trigger to activate the snippet -->
<tabTrigger>alter</tabTrigger>
<!-- Optional: Scope the tab trigger will be active in -->
<scope>source.html</scope>
<!-- Optional: Description to show in the menu -->
<description>My Fancy Snippet</description>
</snippet>
after that Im typing alter in html document and pressing tab but doesn't showing the content. can you tell me why ?