Skip to content

Instantly share code, notes, and snippets.

@allaniftrue
Created July 3, 2014 01:57
Show Gist options
  • Save allaniftrue/28e0ba87a312c1f8e748 to your computer and use it in GitHub Desktop.
Save allaniftrue/28e0ba87a312c1f8e748 to your computer and use it in GitHub Desktop.
Sublime Snippet for Tables In Email Coding
<snippet>
<content><![CDATA[
<table border="0" cellspacing="0" cellpadding="0" width="${1:100%}" align="${2:center}">
<tr>
<td>
$3
</td>
</tr>
</table>
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>etable</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<!-- <scope>source.python</scope> -->
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment