Does any of you know how to use $ char inside a sublimetext snippet? It conflicts with the placeholder syntax.
But what about all that js/jquery stuff like $(document).ready
?
$(document).ready(function(){
${1}
});
You can clearly see the problem here.. I can't find a solution on docs
You can escape special characters like
$
with the backslash key\
.Example:
Result: