반응형
javascript에서 html code를 string으로 제어하는 경우가 종종 있다.
이 경우에는 vscode가 일반적인 string으로 인식하기 때문에 code syntax highlight를 지원하지 않는다.
그래서 https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/String/raw 를 이용해서
const html = String.raw
html`<html></html>`
이런식으로 사용했었는데 찾아보니 vscod에 해당 기능을 지원해주는 플러그인이 있더라
https://marketplace.visualstudio.com/items?itemName=Tobermory.es6-string-html
/*html*/
/*html*/`<html></html>`
이런식으로 string앞에 주석만 추가해주면 된다.
html 이외에도
- /*css*/
- /*html*/
- /*inline-html*/
- /*template*/
- /*inline-template*/
- /*javascript*/ or /*js*/
- /*typescript*/ or /*ts*/
등 많은 언어를 지원해준다.
반응형
'개발관련' 카테고리의 다른 글
도커 볼륨 마운트 -v,--volume 컨테이너 경로를 호스트 경로 링크 마운트 하는 방법 (0) | 2024.02.28 |
---|---|
next.js + jenkins + harbor + docker 배포 구성하기 (1) | 2024.01.29 |
실무에 바로 써먹는 실용적인 도커 사용설명서 (0) | 2024.01.23 |
도커 CLI 실행 방법 도커 포트 설정 방법 (1) | 2024.01.21 |
Windows에서 개발 환경 세팅 하기 WSL 설치 및 사용법 (1) | 2023.10.30 |