Last active
January 26, 2019 12:22
-
-
Save celticwebdesign/ce1d81739ba745b31ce00f18846cfbb0 to your computer and use it in GitHub Desktop.
// https://snippet-generator.app // VSCode, Sublime Text, Atom
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://snippet-generator.app | |
// VSCode, Sublime Text, Atom | |
'.source.php': | |
'HTML - div': | |
'prefix': 'div' | |
'body': """ | |
<div> | |
</div> | |
""", | |
'HTML - div class': | |
'prefix': 'div-class' | |
'body': """ | |
<div class="class_name"> | |
content | |
</div> | |
""", | |
'HTML - div id class': | |
'prefix': 'div-id-class' | |
'body': """ | |
<div id="id_name" class="class_name"> | |
content | |
</div> | |
"""; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment