Visual Studio 代码片段
Snippet on Visual Studio Code
大家好,我在 VScode 上制作我的代码片段时遇到问题。
这是头饰:
"HTML5":{
"prefix": "html5",
"body":[
"<!DOCTYPE html>",
"<html lang='es'>",
"\t<head>",
"\t\t<meta charset='utf-8'>",
"<meta name='viewport' content='width=device-width, initial-scale=1.0'>",
"\t\t<title></title>",
"\t</head>",
"\t<body>",
"\t</body>",
"</html>"
],
"description": "Basic HTML5 document."
}
我想知道如何将 lang='es' 等属性设为字符串,而不是 我想要 lang="es" 作为结果 .一些帮助?
谢谢!
我相信你只需要用反斜杠转义双引号,就像这样:\"
。您的代码段类似于:
"body":[
"<!DOCTYPE html>",
"<html lang=\"es\">",
....
大家好,我在 VScode 上制作我的代码片段时遇到问题。
这是头饰:
"HTML5":{
"prefix": "html5",
"body":[
"<!DOCTYPE html>",
"<html lang='es'>",
"\t<head>",
"\t\t<meta charset='utf-8'>",
"<meta name='viewport' content='width=device-width, initial-scale=1.0'>",
"\t\t<title></title>",
"\t</head>",
"\t<body>",
"\t</body>",
"</html>"
],
"description": "Basic HTML5 document."
}
我想知道如何将 lang='es' 等属性设为字符串,而不是 我想要 lang="es" 作为结果 .一些帮助? 谢谢!
我相信你只需要用反斜杠转义双引号,就像这样:\"
。您的代码段类似于:
"body":[
"<!DOCTYPE html>",
"<html lang=\"es\">",
....