Toggle theme
문제를 잘 정의하는 것은 문제를 절반 해결한 것이다. - 2023.12
사용자 도구
Toggle theme
로그인
사이트 도구
검색
도구
문서 보기
이전 판
PDF로 내보내기
Fold/unfold all
역링크
최근 바뀜
미디어 관리자
사이트맵
로그인
>
최근 바뀜
미디어 관리자
사이트맵
현재 위치:
start
»
wiki
»
util
»
vscode
»
vs_code_사용자_snippets_만들기_-_html
wiki:util:vscode:vs_code_사용자_snippets_만들기_-_html
이 문서는 읽기 전용입니다. 원본을 볼 수는 있지만 바꿀 수는 없습니다. 문제가 있다고 생각하면 관리자에게 문의하세요.
====== VS Code 사용자 snippets 만들기 - html ====== <WRAP left notice 70%> * description : VS Code 사용자 snippets 만들기 - html * author : 오션 * email : shlim@repia.com * lastupdate : 2021-07-15 Thu </WRAP> <WRAP clear></WRAP> \\ ===== Snippet ===== 코드 자동 완성 기능\\ ===== HTML ===== VS Code에서 확장자 %%html%%를 가진 파일을 만든 후 첫 라인에 %%!%% (느낌표)를 입력하면,\\ Tab 키 또는 Enter키를 누르면 하기와 같은 기본 %%html%% 서식 문서가 작성됩니다.\\ \\ <code html> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> </body> </html> </code> ===== 사용자 snippets 만들기 ===== 1. File > Preferences > User Snippets - 검색창에 %%html.json%%을 입력 후 Enter를 클릭합니다.\\ ( 파일 > 설정 > '사용자 코드 조각' )\\ \\ 2. 기본 저장된 파일의 내용은 하기와 같으며, snippets를 만들기 위한 가이드 내용입니다.\\ (수정 전)\\ <code html> { // Place your snippets for html here. Each snippet is defined under a snippet name and has a prefix, body and // description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the // same ids are connected. // Example: // "Print to console": { // "prefix": "log", // "body": [ // "console.log('$1');", // "$2" // ], // "description": "Log output to console" // } } </code> \\ (수정 후)\\ <code html> { "korean html form" : { "prefix": "korean-html-form", "body": [ "<!DOCTYPE HTML>", "<html lang=\"ko\">", "<head>", "<meta charset=\"UTF-8\">", "<meta name=\"viewport\" content=\"width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no\">", "<title>${1:제목을 입력하세요}</title>", "</head>", "<body>", "$2", "</body>", "</html>" ], "description": "html auto-complete for Korean" } } </code> \\ 상기 %%html.json%% 파일을 저장 후, prefix로 지정한 "korean-html-form"을 입력(자동완성이 됩니다)하고\\ Tab 또는 Enter를 클릭하면, 하기와 같이 기본 %%html%% 서식 문서가 생성됩니다.\\ \\ <code html> <!DOCTYPE HTML> <html lang="ko"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no"> <title>제목을 입력하세요</title> </head> <body> </body> </html> </code> \\ %%$1%%, %%$2%%는 자동 완성이 된 후, 옮겨지는 커서의 순서를 가리킵니다.\\ 첫 번째는 title 태그로 커서가 옮겨지고, title 태그에 내용 입력 후 Tab키를 누르면,\\ body안에 있는 %%$2%%의 위치로 커서가 이동합니다.\\ %%html snippet%% 파일 저장 위치 : \\ %%C:\Users\[user name]\AppData\Roaming\Code\User\snippets\ %%\\ ===== Ref ===== [[https://code.visualstudio.com/docs/editor/userdefinedsnippets|Snippets in Visual Studio Code]]\\ \\ [[https://usang0810.tistory.com/29|VSCode HTML 자동완성 만들기(사용자 코드 조각 추가]]\\ \\ [[https://developern.tistory.com/entry/VS-code-user-snippets|VS code 사용자 snippets 만들기]] {{tag>오션, VS Code 사용자 snippets 만들기 - html}}
/volume1/web/dokuwiki/data/pages/wiki/util/vscode/vs_code_사용자_snippets_만들기_-_html.txt
· 마지막으로 수정됨: 2023/01/13 18:44 (바깥 편집)
문서 도구
문서 보기
이전 판
역링크
PDF로 내보내기
Fold/unfold all
맨 위로