Put this into your settings:
"emmet.extensionsPath": "C:\Users\Mark\Test Bed\.vscode",
// with path to your .vscode folder.
// right-click on the folder in your explorer bar and choose Copy Path - use that in above
The above will allow emmet to find the snippets you will create.
Create a snippets.json
file in your .vscode
folder.
Put this into that file:
{
"html": {
"snippets": {
"link": "<link rel='stylesheet' type='text/css' href='${1}'>"
}
}
}
Reload vscode window after any changes to this file or you won't see the changes take effect!
or use this form if you want to use double quotes:
"link": "<link rel="stylesheet" type="text/css" href="${1}">"
More info here: https://code.visualstudio.com/docs/editor/emmet#_using-custom-emmet-snippets
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…