Created
November 13, 2012 11:00
-
-
Save mikeplate/4065215 to your computer and use it in GitHub Desktop.
Snipmate Snippet for HTML
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
| snippet doc | |
| <html> | |
| <head> | |
| <title>${1}</title> | |
| </head> | |
| <body> | |
| ${2} | |
| </body> | |
| </html> | |
| snippet doc2 | |
| <html> | |
| <head> | |
| <title>${1}</title> | |
| <style> | |
| </style> | |
| </head> | |
| <body> | |
| ${2} | |
| <script> | |
| </script> | |
| </body> | |
| </html> | |
| snippet jqa | |
| $.ajax({ | |
| url: "${1}", | |
| dataType: "json", | |
| success: function(data) { | |
| }, | |
| error: function(xhr, msg) { | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment