0
How to insert a $ symbol into a template snippet?
I read the github repository, and now I want to know how to instert a '$' symbol into a template snippet, I tired using '\$' like TextMate help say, but it doesn't work, any ideas?
Thanks :D
P.S: Excellent app! ;)
Thanks :D
P.S: Excellent app! ;)
Customer support service by UserEcho
the snippets are in JSON format.
JSON is pretty liberal regarding string escapes: The only characters you must escape are '\', '"', and control codes (anything less than U+0020).
So you can just use the $ symbol as is in a JSON string.