πŸ’ŽIDE

[VS Code] code snippet $ escape ( dollar sign )

harry.93 2021. 8. 5. 12:28
λ°˜μ‘ν˜•

VS Code snippet μ—μ„œ $ ν‘œμ‹œκ°€ ν•„μš”ν•  λ•Œ.

from

"mySnippet": {
	"prefix" : [
    	"test"
    ],
    "body":[
    	"$('body').html();",
        "\t\n",
        "\t"
    ]
}

 

To

"mySnippet": {
	"prefix" : [
    	"test"
    ],
    "body":[
    	"\\$('body').html();",
        "\t\n",
        "\t"
    ]
}

 

$ μ•žμ— \\ λ₯Ό 뢙인닀.

728x90
λ°˜μ‘ν˜•