Atom 기본 HTML 스니펫에서 LANG=en을 LANG=ko로 변경하는 방법
Atom에서는 Emmet의 View Code 를 클릭하여 변경할 수 있다.
출처: https://treasureland.tistory.com/1 [보물섬]
- [File] -> [Settings] -> [Packages] -> [emmet] -> [Settings] 버튼 클릭
- emmet Settings에서 View Code 버튼을 클릭합니다.
- 소스트리에서 [emmet] -> [node_modules] -> [emmet] -> [lib] -> [snippets.json] snippets,json파일을 열면 상단에 variables 변경
SublimeText3의 기본 HTML 스니펫에서 LANG=en을 LANG=ko로 변경하는 방법
Sublime text에서는 Preferences > Package Settings > Emmet > Settings에서 할 수 있다.
1. Preferences > Package Settings > Emmet > Settings 클릭
2. 다음을 입력한다.
{
"snippets": {
"variables": {
"lang": "ko",
"locale": "ko-KR",
"charset": "UTF-8",
"indentation": "\t",
"newline": "\n"
},
"html": {
"abbreviations": {
"meta:edge": "<meta http-equiv=\"X-UA-Compatible\" content=\"${1:ie=edge}\" />",
"meta:vp": "<meta name=\"viewport\" content=\"width=${1:device-width}, initial-scale=${3:1.0}\" />",
"doc": "html>(head>meta[charset=${charset}]+meta:vp+meta:edge+title{${1:문서 제목}})+body",
"html:5": "!!!+doc[lang=${locale}]",
"!": "html:5"
}
}
}
}
기타자료:
- stackoverrun.com/ko/q/7476499
- blog.naver.com/skywood1/220597743617
- maxcomfem.tistory.com/36
- gist.github.com/Nullgom/77c8003292edad7356d71444819482ab
- jeonghakhur.gitbooks.io/sublime-text3/content/package-emmet.html
- github.com/sergeche/emmet-sublime/tree/master/emmet
- github.com/chosungmin/sublimeText3Config/tree/master/User
- gist.github.com/Nullgom/77c8003292edad7356d71444819482ab
- osxtip.tistory.com/502
- docs.emmet.io/abbreviations/
해결되지 않았음.
반응형
'코딩ㆍ개발 정보 > HTML 연습' 카테고리의 다른 글
모바일 용 데이터 베이스 SQLite 사용방법 (0) | 2020.09.17 |
---|---|
HTML5 시맨틱 구조 태그 (0) | 2020.09.17 |
sublime text의 emmet 탭이 먹히지 않아요? (0) | 2020.08.23 |
sublime text에서 들여쓰기 단축키, 브라우저로 보기 단축키 만들기 (0) | 2020.08.21 |
sublime text에서 작성한 HTML 파일 브라우저에서 바로 보기 (0) | 2020.08.19 |
댓글