Skip to content

Instantly share code, notes, and snippets.

View vshap's full-sized avatar

Vitalii Shapoval vshap

  • Kiev
View GitHub Profile
@vshap
vshap / fakeimg.snippets.cson
Last active November 8, 2015 18:25
Reserve an placeholder for image based on placeholder website http://fakeimg.pl/
#
'.text.html':
'Fake image':
'prefix': 'fakeimg'
'body': '<!-- Should be replaced! --> \n<img src="http://fakeimg.pl/${1:350}x${2:200}/${3:EFEFEF}/${4:1E1E1E}/?text=${5:Img+placeholder}" alt="Image placeholder">'
#
# Add this code to snippets.cson of Atom
#
# Type fakeimg in your .html file
# press <Enter>
@vshap
vshap / di.snippets.cson
Last active January 6, 2016 15:37
Autocomment for begin/end of div's. Based on html-dicomment.sublime-snippet from Akella https://gist.github.com/akella/9757676
#
'.text.html':
'Div comment':
'prefix': 'di'
'body':
'<!-- begin $1 --> \n<div class="$1"> \n$2 \n</div> \n<!-- end $1 -->'
# Add this code to snippets.cson of Atom
#
# Type di in your .html file